-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
43
{
"name": "nodejs-complete-guide",
"version": "1.0.0",
"description": "Complete Node.js Guide",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"start-server": "node app.js",
"start-dev": "nodemon app.js"
},
"author": "Maximilian Schwarzmüller",
"license": "ISC",
"devDependencies": {
"nodemon": "^2.0.20"
},
"dependencies": {
"@cyclic.sh/s3fs": "^1.2.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compressible": "^2.0.18",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^3.1.1",
"csurf": "^1.11.0",
"ejs": "^3.1.8",
"express": "^4.16.3",
"express-handlebars": "^6.0.6",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"helmet": "^5.0.1",
"mongodb": "^4.13.0",
"mongoose": "^6.8.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.9.0",
"pdfkit": "^0.13.0",
"pug": "^3.0.2",
"sequelize": "^6.28.0",
"stripe": "^11.8.0"
}
}