-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
{
"name": "multiplayer-backend",
"version": "1.0.0",
"main": "server.ts",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"clean": "rm -rf dist",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@socket.io/redis-adapter": "^7.1.0",
"@types/cookie-parser": "^1.4.8",
"@types/jsonwebtoken": "^9.0.9",
"axios": "^1.8.2",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.21.2",
"http-proxy-middleware": "^3.0.3",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.0",
"moment": "^2.24.0",
"redis": "^4.0.2",
"socket.io": "^4.4.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^9.20.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1"
}
}