-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
47
48
{
"name": "mychess",
"version": "1.0.0",
"main": "server/src/index.ts",
"scripts": {
"start": "ts-node server/src/index.ts",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server.js",
"client": "cd client && npm start",
"build": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "MPL-2.0",
"description": "",
"dependencies": {
"@types/chess.js": "^0.13.7",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"chess.js": "^1.0.0-beta.8",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.2",
"node-uci": "^1.3.4",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uuid": "^10.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.5.3",
"@types/node-uci": "^1.3.6",
"@types/sqlite3": "^3.1.11",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2"
}
}