-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "nodejs-api-boilerplate",
"description": "A delightful way to building a Node.js RESTful API Services with beautiful code written in Vanilla Javascript",
"version": "1.0.0",
"main": "index.js",
"author": "Sky Albert <trantoan.fox.97@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/app.js",
"start": "cross-env NODE_ENV=development node src/app.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"express-status-monitor": "trantoan960/express-status-monitor",
"figlet": "^1.5.2",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"husky": "^7.0.2",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.0.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"serve-favicon": "^2.5.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"validator": "^13.6.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-security": "^1.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.{js,json}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "prettier --write . && git add -A .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}