-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 990 Bytes
/
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
{
"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",
"start-server": "node app.js",
"lint:fix": "eslint --fix ./*.js"
},
"author": "Maximilian Schwarzmüller",
"license": "ISC",
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^1.18.3",
"prettier": "^2.8.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^16.0.3",
"ejs": "^2.6.1",
"eslint-config-prettier": "^8.6.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"mongodb": "^4.13.0",
"mongoose": "^6.9.1",
"mysql2": "^2.3.3",
"pug": "^2.0.3",
"sequelize": "^6.28.0"
}
}