-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 KB
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
59
60
{
"name": "simplestrichliste",
"version": "0.6.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "node --test --test-force-exit",
"update": "npx npm-check-updates -u",
"dev": "nodemon -e js,ejs,json .\\index.js",
"migrate:apply": "node migrate.js apply",
"migrate:create": "node migrate.js create",
"migrate:seed": "node migrate.js seed",
"feature:uninstall": "node tools/uninstallFeature.js"
},
"_moduleAliases": {
"@src": "./src",
"@lib": "./lib",
"@api": "./api",
"@static_api": "./static_api",
"@middleware": "./middleware",
"@config": "./config",
"@e2etest": "./e2e-test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Public-Transport-Nuremberg/SimpleStrichliste.git"
},
"engines": {
"node": "20.x || 22.x || 23.x || 24.x"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Public-Transport-Nuremberg/SimpleStrichliste/issues"
},
"homepage": "https://github.com/Public-Transport-Nuremberg/SimpleStrichliste#readme",
"dependencies": {
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.10.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.4.2",
"ejs": "^5.0.2",
"error-stack-parser": "^2.1.4",
"express-csp-header": "^6.3.1",
"express-useragent": "^2.2.0",
"html-minifier-next": "^6.2.6",
"i18next": "^26.2.0",
"joi": "^18.2.1",
"jszip": "^3.10.1",
"megahash": "^1.0.6",
"module-alias": "^2.3.4",
"multer": "^2.1.1",
"nodemailer": "^9.0.1",
"sanitize-html": "^2.17.4",
"sharp": "^0.34.5",
"ultimate-express": "2.1.0"
}
}