-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "aeries-discord-bot",
"version": "1.0.0",
"type": "module",
"description": "Discord bot to alert about aeries grade changes ",
"main": "src/index.ts",
"repository": "https://github.com/Scoder12/aeries-discord-bot",
"author": "Scoder12 <[email protected]>",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"dev": "tsx watch ./src/scripts/main.ts",
"build": "tsc",
"start": "node --enable-source-maps ./dist/scripts/main.js",
"mockserver": "nodemon ./src/test/fakeAeriesServer.ts"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.8.0",
"@types/qs": "^6.9.7",
"arg": "^5.0.2",
"express": "^4.18.1",
"prettier": "^2.7.1",
"prisma": "^5.1.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"cheerio": "^1.0.0-rc.12",
"discord-api-types": "^0.37.11",
"discord.js": "^14.13.0",
"fetch-cookie": "^2.1.0",
"node-fetch": "^3.2.10",
"qs": "^6.11.0",
"zod": "^3.19.1"
}
}