-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 753 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 753 Bytes
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
{
"name": "nodejs_secure_login_app",
"version": "1.0.0",
"description": "Secure node-express login app",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js",
"start-server": "node app.js"
},
"keywords": [
"javascript",
"node.js",
"express"
],
"author": "Hanoak",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-mongodb-session": "^3.1.1",
"csurf": "^1.11.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"mongodb": "^4.1.3",
"mongoose": "^6.0.12"
},
"devDependencies": {
"nodemon": "^2.0.14"
}
}