forked from hagopj13/node-express-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 KB
/
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
38
39
40
41
42
43
{
"name": "node-express-mongoose-boilerplate",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/hagopj13/node-express-mongoose-boilerplate.git",
"author": "Hagop Jamkojian <hagopj13@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status": "^1.4.0",
"lodash": "^4.17.15",
"mongoose": "^5.7.7",
"morgan": "^1.9.1",
"pm2": "^4.1.2",
"validator": "^11.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
}
}