-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 KB
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
{
"name": "node-express-mongo",
"version": "1.0.0",
"description": "Node Express Mongo",
"main": "server.js",
"repository": "git@github.com:vishalnagda1/node-express-mongo.git",
"author": "Vishal Nagda <vishalnagda1@gmail.com>",
"license": "MIT",
"scripts": {
"start": "export NODE_ENV=development; nodemon --exec \"eslint server.js routes.js ./app/** --fix && node server.js\"",
"start-prod": "export NODE_ENV=production; node server.js"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.3",
"express-rate-limit": "^7.1.1",
"is-empty": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.20"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
}
}