-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "socket-game-project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/main.js",
"dev": "nodemon --watch src --ext ts --exec ts-node src/main.ts",
"build": "tsc",
"prod": "tsc && node dist/main.js",
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@typegoose/typegoose": "^12.9.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongodb": "^4.0.6",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.9.0",
"@types/socket.io": "^3.0.1",
"nodemon": "^3.0.1",
"socket.io": "^4.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.8.1",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0"
}
}