-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 860 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
{
"name": "secure-coding-demo-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start:dev": "cross-env NODE_ENV=development node index.js",
"start:prod": "cross-env NODE_ENV=production node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csrf-csrf": "^3.1.0",
"csurf": "^1.10.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.5",
"uuid": "^11.0.3",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.7",
"prettier": "^3.4.2"
}
}