-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 745 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 745 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": "express-sample",
"version": "1.0.0",
"description": "Express with mongo",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "env-cmd -f ./.env node src/app.js",
"dev": "env-cmd -f ./.env nodemon --exec \"node src/app.js\""
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"jquery": "^3.5.1",
"jsonwebtoken": "^8.1.0",
"moment": "^2.27.0",
"mongoose": "^5.9.25",
"nodemon": "^2.0.4",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"validator": "^9.1.1"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint": "^7.5.0"
}
}