-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
88 lines (88 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "express-boilerplate",
"version": "2.0.0",
"description": "ExpressJS boilerplate with Socket.IO, Mongoose for scalable projects.",
"main": "src/index.js",
"scripts": {
"dev": "export NODE_ENV=development && nodemon ./src/index.js",
"start": "export NODE_ENV=production && node ./src/index.js",
"lint": "./node_modules/.bin/eslint . --ext .js",
"docs": "apidoc -i src -o docs && apidoc-postman -i src -o docs/postman",
"docs-postman": "apidoc-postman -i src -o docs",
"precommit": "lint-staged"
},
"nodemonConfig": {
"ignore": [
"docs/*"
],
"delay": "2500"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint",
"git add ."
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/imbudhiraja/express-boilerplate.git"
},
"keywords": [
"express",
"nodejs",
"boilerplate",
"socket.io"
],
"author": "Manish Budhiraja",
"license": "MIT",
"bugs": {
"url": "https://github.com/imbudhiraja/express-boilerplate/issues"
},
"homepage": "https://github.com/imbudhiraja/express-boilerplate#readme",
"dependencies": {
"@sendgrid/mail": "^7.2.4",
"axios": "^0.21.2",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"ddos": "^0.2.1",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-server-logs": "^1.0.4",
"express-validation": "^3.0.5",
"helmet": "^4.1.0",
"http-status": "^1.4.2",
"joi": "^17.2.1",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.21",
"luxon": "^1.28.1",
"moment-timezone": "^0.5.35",
"mongoose": "^5.13.15",
"node-schedule": "^1.3.2",
"sharp": "^0.30.5",
"socket.io": "^2.5.0",
"twilio": "^3.49.0",
"underscore": "^1.12.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"apidoc": "^0.25.0",
"apidoc-postman": "0.0.92",
"babel-eslint": "^10.1.0",
"eslint": "^7.7.0",
"eslint-config-imbudhiraja": "1.0.8",
"husky": "^4.3.8",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5"
}
}