-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.21 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
43
44
45
46
47
{
"name": "nodejs-app",
"version": "1.0.0",
"description": "Online shop built using Node.js",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewCathcart/nodejs-app.git"
},
"author": "Andrew Cathcart",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndrewCathcart/nodejs-app/issues"
},
"homepage": "https://github.com/AndrewCathcart/nodejs-app#readme",
"devDependencies": {
"nodemon": "^1.19.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.2.0",
"csurf": "^1.10.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"express-validator": "^6.1.0",
"lodash": "^4.17.13",
"mongodb": "^3.2.7",
"mongoose": "^5.7.5",
"multer": "^1.4.1",
"mysql2": "^1.6.5",
"nodemailer": "^6.2.1",
"nodemailer-sendgrid-transport": "^0.2.0",
"pdfkit": "^0.10.0",
"pug": "^2.0.4",
"sequelize": "^6.0.0",
"shortid": "^2.2.14",
"stripe": "^7.4.0"
}
}