-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 729 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 729 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
{
"name": "nodejs-example",
"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": "Shruti",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.18.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"compresion": "^1.7.11",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"mysql2": "^3.9.7",
"pug": "^2.0.3",
"sequelize": "^6.37.3"
}
}