-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1004 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1004 Bytes
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
{
"name": "nodejs-app",
"version": "0.8.0",
"description": "Complete Node Application",
"main": "app.js",
"engines": {
"node": "10.16.0"
},
"scripts": {
"start": "node app.js",
"start-server": "node app.js",
"start:dev": "nodemon app.js"
},
"author": "David Mateo",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.18.3"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cloudinary": "^1.14.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.2.0",
"csurf": "^1.10.0",
"date-fns": "^1.30.1",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-session": "^1.16.2",
"express-validator": "^6.1.1",
"helmet": "^3.20.0",
"mongodb": "^3.1.6",
"mongoose": "^5.6.9",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"pdfkit": "^0.10.0",
"sharp": "^0.23.0",
"stripe": "^7.8.0"
}
}