-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 727 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 727 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
{
"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"
},
"author": "Maximilian Schwarzmüller",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.19.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongodb": "^3.5.5",
"mongoose": "^5.9.19",
"multiparty": "^4.2.1",
"mysql2": "^1.6.1",
"pug": "^2.0.3",
"sequelize": "^5.0.0-beta.11"
}
}