-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 997 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
{
"name": "chess-link",
"version": "1.0.0",
"description": "Type interfaces and server tools for ChessLink project.",
"main": "dist/index.js",
"types": "src/types/index.ts",
"scripts": {
"build": "tsc",
"dev": "npx ts-node -r tsconfig-paths/register src/server.ts",
"test": "jest --forceExit",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"docker:build": "docker build -t chesslink .",
"docker:run": "docker run -p 3000:3000 chesslink",
"docker:dev": "docker-compose up --build",
"docker:stop": "docker-compose down"
},
"dependencies": {
"chess.js": "^1.4.0",
"express": "^5.1.0",
"rate-limiter-flexible": "^7.1.1",
"socket.io": "^4.0.0",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.8",
"jest": "^29.7.0",
"socket.io-client": "^4.8.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
}
}