-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.69 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": "hacktheweb",
"version": "0.0.0",
"description": "hack.arrrg.de",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"save2local:powershell": "powershell $env:SAVE2LOCAL='1';$env:LIVE='1';npm start;$env:SAVE2LOCAL=$null;$env:LIVE=$null",
"recalculateScore:powershell": "powershell $env:RECALCULATESCORE='1';npm start;$env:RECALCULATESCORE=$null",
"format": "prettier src --write",
"tsc": "tsc"
},
"type": "module",
"main": "src/index.js",
"author": "Entkenntnis <hack@arrrg.de>",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^2.4.0",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.0",
"connect-gzip-static": "4.0.0",
"cookie-parser": "^1.4.6",
"csrf": "^3.1.0",
"ejs": "^3.1.0",
"escape-html": "^1.0.3",
"express": "^4.17.0",
"express-session": "^1.17.0",
"i18next": "^23.0.0",
"i18next-fs-backend": "^2.3.2",
"jsqr": "^1.4.0",
"mariadb": "^3.0.0",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"pngjs": "^7.0.0",
"quickjs-emscripten": "^0.31.0",
"seedrandom": "^3.0.5",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/connect-flash": "^0.0.40",
"@types/cookie-parser": "^1.4.7",
"@types/escape-html": "^1.0.4",
"@types/express": "^4.17.0",
"@types/express-session": "^1.18.0",
"@types/multer": "^1.4.12",
"@types/node-fetch": "^2.6.11",
"@types/pngjs": "^6.0.5",
"@types/seedrandom": "^3.0.8",
"eslint": "^9.13.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"sqlite3": "^5.1.7",
"typescript": "^5.6.3"
}
}