forked from GuilhermeCarra/nodejs-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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": "node.js-web-mvc",
"version": "1.0.0",
"description": "A e-commerce website with node.js server",
"main": "src/routes/router.js",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"bootstrap-icons": "^1.0.0",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-mysql-session": "^2.1.4",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"helmet": "^4.1.1",
"jquery": "^3.5.1",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemailer": "^6.4.14",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"popper": "^1.0.1",
"pug": "^3.0.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"node": "nodemon src/routes/router.js",
"database": "node src/database/populate.js"
},
"repository": {
"type": "git",
"url": "https://code.assemblerschool.com/guillherme-carra/Node.js-Web-MVC.git"
},
"author": "",
"license": "ISC"
}