-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 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
{
"name": "pso-matchmaker",
"version": "1.6.0",
"types": "build/bot/src/index.d.ts",
"scripts": {
"build": "tsc --build",
"build-bot": "tsc --build bot/tsconfig.json",
"build-scripts": "tsc --build scripts/tsconfig.json",
"build-migrations": "tsc --build migrations/tsconfig.json",
"clean": "tsc --build --clean",
"test": "jest ./bot/test/*",
"test:debug": "jest --verbose --runInBand ./bot/test/*",
"dev": "npx nodemon bot/src/bot.ts",
"start": "node index.js",
"deploy-commands": "node build/scripts/deploy-commands.js",
"end-season": "ts-node scripts/end-season.ts"
},
"dependencies": {
"@discordjs/rest": "2.2.0",
"@types/node-cron": "3.0.11",
"async-csv": "2.1.3",
"discord-api-types": "0.37.79",
"discord.js": "14.14.1",
"dotenv": "16.4.5",
"emoji-regex": "10.3.0",
"math-z-score": "1.0.0",
"mongoose": "8.3.1",
"node-cron": "3.0.3",
"parse-duration": "1.1.0",
"simple-elo-rating": "1.0.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/uuid": "9.0.8",
"eslint": "9.0.0",
"jest": "29.7.0",
"mongodb-memory-server": "9.1.8",
"nodemon": "3.1.0",
"ts-jest": "29.1.2",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"typescript": "5.4.5"
}
}