-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"dependencies": {
"@prisma/client": "^5.16.1",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.16.2",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"node-cache": "^5.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/cheerio": "^0.22.35",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-unused-imports": "^3.2.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"prisma": "^5.16.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "<5.6.2",
"typescript-eslint": "^7.15.0"
},
"scripts": {
"migrate": "prisma db push",
"build": "prisma generate && tsc && tsc-alias",
"start": "prisma db push && node ./build/start.js",
"startTs": "ts-node ./src/start.ts",
"dev": "prisma generate && prisma db push && nodemon ./src/start.ts",
"test": "jest",
"lint": "eslint . --fix",
"prettify": "prettier --write './**/*.{ts,yaml,json,js}'",
"checkStyle": "prettier --check './**/*.{ts,yaml,json,js}'"
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"name": "mcv-discord-bot",
"description": "Discord bot to notify my course ville assignments\r # how it works:\r - fetch courses to find added course\r - fetch assignments of each course, see if it is a new assignment -> put it in stack\r - pop each new assignments to create a message sent to notification channels",
"version": "1.0.0",
"main": "/src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/NewBieCoderXD/mcv-discord-bot.git"
},
"author": "ggFROOK",
"license": "ISC",
"bugs": {
"url": "https://github.com/NewBieCoderXD/mcv-discord-bot/issues"
},
"homepage": "https://github.com/NewBieCoderXD/mcv-discord-bot#readme"
}