-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "infinite-chess-server",
"version": "1.4.3",
"description": "infinitechess.org server",
"author": "Naviary",
"license": "AGPL",
"main": "dist/server/server.js",
"type": "module",
"dependencies": {
"@swc/core": "^1.7.0",
"abort-controller": "^3.0.0",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.5.0",
"browserslist": "^4.23.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.23.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.10",
"esbuild": "^0.23.1",
"express": "^4.18.2",
"glob": "^11.0.0",
"i18next": "^23.12.1",
"i18next-http-middleware": "^3.6.0",
"jsonwebtoken": "^9.0.2",
"lightningcss": "^1.25.1",
"marked": "^14.1.2",
"node-forge": "^1.3.1",
"nodemailer": "^6.8.0",
"nodemon": "^3.1.4",
"proper-lockfile": "^4.1.2",
"sharp": "^0.33.4",
"smol-toml": "^1.2.2",
"uuid": "^8.3.2",
"ws": "^8.16.0",
"xss": "^1.0.15"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.16.0",
"globals": "^15.9.0",
"madge": "^8.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"scripts": {
"build": "node build.js",
"watch": "nodemon",
"start": "node .",
"build-images": "node src/server/utility/generateImages.js",
"generate-dependancy-graph": "node src/server/utility/generateDependancyGraph.js"
}
}