-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 853 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": "express",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"dev-inspect": "nodemon --inspect index.js"
},
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.5",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^3.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.2",
"handlebars": "^4.7.7",
"helmet": "^4.6.0",
"mongoose": "^5.13.2",
"multer": "^1.4.3",
"nodemailer": "^6.6.3",
"nodemailer-sendgrid-transport": "^0.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"csurf": "^1.11.0",
"express-validator": "^6.12.1",
"nodemon": "^2.0.9"
}
}