-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 922 Bytes
/
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
{
"name": "fide_chess_master",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "npx tsx src/index.ts",
"dev": "npx tsx watch src/index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"chess.js": "^1.0.0-beta.8",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"equine": "^0.2.1",
"express": "^4.21.2",
"lichess-api": "^1.0.2",
"node-cron": "^3.0.3",
"node-uci": "^1.3.4",
"openai": "^4.77.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node-cron": "^3.0.11",
"@types/node-uci": "^1.3.6",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}