forked from dejosli/NodeJS-RESTful-API-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.84 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
89
90
91
92
93
94
95
96
{
"name": "nodejs-restful-api-boilerplate",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/dejosli/NodeJS-RESTful-API-Boilerplate.git",
"author": "Josli Shubho Biswas <[email protected]>",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=16.14.2",
"yarn": ">=1.22.18"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"db:seed": "node setup/seeder.js -i",
"db:remove": "node setup/seeder.js -r",
"test": "jest --colors --verbose --detectOpenHandles",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.js",
"prettier:fix": "prettier --write **/*.js",
"validate": "yarn lint:fix && yarn prettier:fix",
"prepare": "husky install",
"commit": "cz"
},
"dependencies": {
"accesscontrol": "^2.2.1",
"bcrypt": "^5.0.1",
"cloudinary": "^1.29.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^6.1.0",
"express-slow-down": "^1.4.0",
"express-validator": "^6.14.0",
"fs-extra": "^10.0.1",
"helmet": "^5.0.1",
"hpp": "^0.2.3",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongoose": "^6.1.6",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pm2": "^5.1.2",
"speakeasy": "^2.0.0",
"swagger-jsdoc": "^6.2.0",
"swagger-ui-express": "^4.3.0",
"twilio": "^3.75.0",
"winston": "^3.4.0",
"winston-daily-rotate-file": "^4.6.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"lint-staged": "^12.1.7",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "^6.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}