-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 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
{
"name": "chess-game-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx prisma migrate deploy && node server/server.js",
"dev": "nodemon server/server.js",
"test:integration": "cross-env NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IsbatBInHossain/chess-game-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/IsbatBInHossain/chess-game-server/issues"
},
"homepage": "https://github.com/IsbatBInHossain/chess-game-server#readme",
"dependencies": {
"@prisma/client": "^6.9.0",
"bcryptjs": "^3.0.2",
"chess.js": "^1.3.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"friendly-username-generator": "^2.0.4",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"redis": "^5.5.6",
"uuid": "^11.1.0",
"ws": "^8.18.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prisma": "^6.9.0",
"supertest": "^7.1.1"
}
}