-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.49 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.49 KB
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
{
"name": "node-express-mongoose-starter",
"version": "2.0.0",
"description": "A Boilerplate application for building REST APIs using node, express and mongoose",
"author": "Brijesh Bhakta <brijeshbhakta30@gmail.com>",
"main": "index.js",
"private": false,
"license": "MIT",
"engines": {
"node": ">=8.9.3",
"npm": ">=5.5.1"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DEBUG=node-server:* nodemon index.js",
"dev:debug": "cross-env NODE_ENV=development DEBUG=node-server:* nodemon --inspect index.js",
"lint": "esw *.js src --color",
"lint:watch": "npm run lint -- --watch",
"start": "node index",
"start:debug": "cross-env DEBUG=node-server:* npm start",
"test": "cross-env NODE_ENV=test mocha --timeout 5000 --ui bdd --reporter spec --colors src --recursive --exit",
"test:watch": "npm test -- --watch",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/brijeshbhakta30/node-express-mongoose-starter.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"starter",
"starter code",
"es6",
"es7",
"mocha",
"REST",
"API",
"REST API",
"boilerplate"
],
"dependencies": {
"@hapi/joi": "15.0.2",
"bcrypt": "3.0.6",
"bluebird": "3.5.4",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"debug": "4.1.1",
"dotenv": "8.0.0",
"express": "4.16.4",
"express-jwt": "5.3.1",
"express-validation": "1.0.2",
"faker": "4.1.0",
"helmet": "3.18.0",
"http-status": "1.3.2",
"joi": "14.3.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.15",
"method-override": "3.0.0",
"mongoose": "5.7.5",
"morgan": "1.9.1"
},
"devDependencies": {
"@commitlint/cli": "7.6.1",
"@commitlint/config-conventional": "7.6.0",
"chai": "4.2.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.17.2",
"eslint-watch": "5.1.2",
"husky": "2.2.0",
"lint-staged": "9.2.3",
"mocha": "6.1.4",
"nodemon": "1.19.1",
"nyc": "14.1.1",
"supertest": "4.0.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm test"
}
}
}