-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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": "queue-bot",
"version": "1.0.0",
"description": "Queue service for Discord-based matchmaking",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "npm run build && node dist/index.js",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\""
},
"keywords": [
"discord",
"queue",
"teeworlds",
"matchmaking"
],
"author": "",
"license": "ISC",
"dependencies": {
"discord.js": "^14.22.1",
"dotenv": "^16.3.1",
"mongoose": "^8.4.1",
"openskill": "^4.1.0",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"chart.js": "^4.5.1",
"chartjs-node-canvas": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}