-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "summonerschool-scrim-bot",
"version": "1.0.0",
"description": "Discord bot for scrims",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "cd dist && node index.js",
"dev": "esno src/index",
"seed": "esno src/scripts/seed-users",
"fix:pregame": "esno src/scripts/fix-pregame-elo",
"resetqueue": "esno src/scripts/reset-queue",
"build": "tsc",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"test": "jest"
},
"dependencies": {
"@discordjs/rest": "^0.5.0",
"@prisma/client": "4.16.2",
"@upstash/redis": "^1.19.1",
"axios": "^0.27.2",
"cat-loggr": "^1.1.0",
"discord-api-types": "^0.36.1",
"discord.js": "^14.7.1",
"fastify": "^3.9.2",
"ioredis": "^5.2.5",
"ws": "^8.8.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/jest": "^28.1.4",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chance": "^1.1.8",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"esno": "^0.16.3",
"jest": "^28.1.2",
"jest-mock-extended": "^2.0.6",
"prettier": "^2.2.1",
"prisma": "4.16.2",
"ts-jest": "^28.0.5",
"ts-node": "^9.1.1",
"typescript": "^5.2.2"
},
"volta": {
"node": "16.18.1"
}
}