-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 976 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
41
42
43
{
"name": "boldchess-web-app",
"version": "1.0.0",
"description": "The official chess web app of BoldChess.com",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build": "echo 'No build required'",
"test": "echo 'No test specified' && exit 0",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"chess",
"game",
"nodejs",
"express"
],
"author": "BoldChess Team",
"license": "AGPLv3",
"repository": {
"type": "git",
"url": "https://bitbucket.org/labinator-team/boldchess-android-app"
},
"dependencies": {
"express": "^4.21.1",
"helmet": "^8.0.0",
"morgan": "^1.10.0",
"compression": "^1.7.4",
"express-rate-limit": "^7.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"cheerio": "^1.0.0",
"express-session": "^1.18.1"
},
"devDependencies": {
"eslint": "^9.13.0",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=20.18.0"
}
}