-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "make-business-easier",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "npm test",
"lint": "eslint api/ middleware/",
"lint:fix": "eslint --fix api/ middleware/",
"start": "nodemon index.js",
"live": "nodemon index.js",
"cluster": "pm2 start index.js -i 4",
"start:staging": "forever start index.js"
},
"keywords": [
"Commerce",
"Backend"
],
"author": "Sushant Basak",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^12.0.1",
"chalk": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-boom": "^3.0.0",
"express-fileupload": "^1.1.7-alpha.3",
"express-validator": "^6.14.0",
"forever": "^0.14.2",
"http-status-codes": "^2.1.4",
"husky": "^4.3.8",
"idx": "^2.5.6",
"jsonwebtoken": "^8.5.1",
"module-async-init": "^0.2.1",
"mongoose": "^5.4.10",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"pm2": "^5.1.2",
"swagger": "^0.7.5",
"swagger-ui-express": "^4.3.0",
"sync-rpc": "^1.3.6",
"uuid": "^7.0.3"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"description": ""
}