-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "node-rest-starter",
"description": "A boilerplate for creating RESTful APIs in Node.js using Express and MongoDB.",
"version": "0.6.0",
"author": "Sk Arif <[email protected]>",
"license": "MIT",
"repository": "github:skarif2/node-rest-starter",
"homepage": "https://github.com/skarif2/node-rest-starter#readme",
"keywords": [
"node"
],
"engines": {
"node": ">=10.3.0",
"npm": ">=6.1.0"
},
"dependencies": {
"@skarif2/logger": "^0.3.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.3",
"compression": "^1.7.3",
"consola": "^2.3.1",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-validation": "^1.0.2",
"helmet": "^3.15.0",
"http-status": "^1.3.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"method-override": "^3.0.0",
"mongoose": "^5.4.2"
},
"devDependencies": {
"apidoc": "^0.17.7",
"coveralls": "^3.0.2",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.3.0"
},
"scripts": {
"start": "node ./src/index.js",
"start:watch": "nodemon ./src/index.js",
"start:debug": "node ./src/index.js",
"lint": "eslint --ext=.js src || true",
"test": "NODE_ENV=test MONGO_HOST=mongodb://localhost/nrs-test jest",
"test:watch": "NODE_ENV=test MONGO_HOST=mongodb://localhost/nrs-test jest --watch",
"test:coverage": "NODE_ENV=test MONGO_HOST=mongodb://localhost/nrs-test jest --coverage",
"apidoc": "apidoc -i ./src -f .route.js -o ./docs"
},
"apidoc": {
"title": "Node Rest Starter",
"url": "https://localhost"
}
}