-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "chess-io-backend",
"version": "0.1.2",
"main": "server.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prisma:fmt": "yarn prisma format",
"prisma:mgr": "yarn prisma migrate dev --name init",
"clean": "rm -rf build tsconfig.tsbuildinfo",
"build": "tsc && tsc-alias",
"start:prod": "yarn build && node --experimental-specifier-resolution=node build/server.js",
"start:dev": "nodemon"
},
"keywords": [
"chess",
"backend",
"api",
"node",
"express"
],
"author": "dev-xero",
"license": "GPL-3.0",
"description": "Backend for ChessIO",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.4",
"@types/uuid": "^10.0.0",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"@types/chess.js": "^0.13.7",
"@types/ioredis": "^5.0.0",
"@types/ws": "^8.5.12",
"app-root-path": "^3.1.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"chess.js": "^1.0.0-beta.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eventemitter2": "^6.4.9",
"express": "^4.21.0",
"express-ws": "^5.0.2",
"format": "^0.2.2",
"helmet": "^8.0.0",
"ioredis": "^5.4.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"ws": "^8.18.0"
}
}