-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
48
49
50
{
"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": "nodemon app.js",
"lint": "eslint ./",
"lint-fix": "eslint . --fix"
},
"pre-commit": [
"lint"
],
"author": "Maximilian Schwarzmüller",
"license": "ISC",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"nodemon": "^1.18.3",
"pre-commit": "^1.2.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.4.1",
"csurf": "^1.11.0",
"ejs": "^2.7.4",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.17.1",
"express-validator": "^6.9.2",
"mongodb": "^3.6.3",
"mongoose": "^5.11.12",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"nodemailer-sendgrid-transport": "^0.2.0",
"pdfkit": "^0.11.0",
"pug": "^2.0.3",
"sequelize": "^6.3.5",
"sql-dialect": "^5.0.1"
}
}