-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 906 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
35
36
37
{
"name": "express_shop_courses",
"version": "1.0.0",
"description": "Online shop for buy courses",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"Node.js",
"Express.js"
],
"author": "Aleksey Belchenkov",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.2.0",
"csurf": "^1.10.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"express-validator": "^6.1.1",
"helmet": "^3.20.0",
"mongoose": "^5.6.7",
"multer": "^1.4.2",
"nodemailer": "^6.3.0",
"nodemailer-sendgrid-transport": "^0.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}