-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "hd_web",
"version": "1.0.0",
"description": "Website for human detector",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production pm2 start server.js",
"start-dev": "nodemon server.js",
"setup": "node scripts/setup.js",
"test": "NODE_ENV=test jest"
},
"author": "David Degen",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^8.5.2",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"mysql2": "^3.9.0",
"pako": "^2.1.0",
"pm2": "^5.3.1",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2",
"serve-favicon": "^2.5.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"jest": "^30.4.2",
"nodemon": "^3.0.3",
"sqlite3": "^6.0.1",
"supertest": "^7.2.2"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup.js"
]
}
}