-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 KB
/
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
38
39
40
41
42
{
"name": "ecommerce-web-app",
"version": "1.0.0",
"description": "A nodeJs app made using ExpressJs, MongoDb and EJS",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js"
},
"repository": "https://github.com/krishrahul98/Ecommerce-Web-App.git",
"keywords": [
"nodejs",
"expressjs",
"ecommerce",
"mongodb"
],
"author": "Rahul Krishna",
"license": "MIT",
"bugs": {
"url": "https://github.com/krishrahul98/Ecommerce-Web-App/issues"
},
"homepage": "https://github.com/krishrahul98/Ecommerce-Web-App",
"devDependencies": {
"nodemon": "^2.0.12"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^3.1.0",
"csurf": "^1.11.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"mongoose": "^6.2.8",
"nodemailer": "^6.6.3",
"nodemailer-sendgrid-transport": "^0.2.0"
}
}