-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 929 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 929 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
38
39
40
41
42
{
"type": "module",
"name": "chess-game-socket-backend",
"version": "1.0.0",
"description": "A chess backend with socket.io, SQLite, and Node.js",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js"
},
"keywords": [
"chess",
"socket.io",
"backend",
"nodejs",
"typescript",
"drizzle",
"sqlite"
],
"author": "BaseMax",
"license": "MIT",
"dependencies": {
"@libsql/client": "^0.15.6",
"bcrypt": "^6.0.0",
"chess.js": "^1.0.0",
"drizzle-orm": "^0.45.2",
"express": "^4.22.1",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.14.1",
"socket.io": "^4.7.2",
"sqlite3": "^6.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"@types/socket.io": "^3.0.2",
"dotenv": "^16.3.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}