-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 890 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 890 Bytes
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
{
"name": "queue-service",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenSquares-Chess/queue-service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/OpenSquares-Chess/queue-service/issues"
},
"homepage": "https://github.com/OpenSquares-Chess/queue-service#readme",
"devDependencies": {
"@tsconfig/node24": "^24.0.1",
"@types/cors": "^2.8.19",
"@types/node": "^24.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/ws": "^8.18.1",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.0",
"redis": "^5.8.3",
"ws": "^8.18.3"
}
}