-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.1 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
{
"name": "nodejs-express-boilerplate",
"version": "0.0.1",
"main": "build",
"repository": "https://github.com/Codeshala-Innovation/nodejs-express-boilerplate.git",
"license": "MIT",
"scripts": {
"build:watch": "gulp",
"build": "gulp flow scripts json",
"start": "yarn build && node -r dotenv/config build/server.js",
"test": "nyc mocha -r dotenv/config --require babel-core/register \"test/**/*.test.js\"",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"precommit": "lint-staged"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"js-yaml": "^3.12.0",
"json-refs": "^3.0.12",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.4",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"password-hash": "^1.2.2",
"rotating-file-stream": "^1.3.6",
"swagger-parser": "^6.0.1",
"swagger-ui-express": "^4.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"codecov": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.74.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-flowtype": "^1.0.0",
"gulp-sourcemaps": "^2.6.4",
"husky": "^1.1.3",
"istanbul": "^0.4.5",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"mock-fs": "^4.7.0",
"nyc": "^12.0.2",
"prettier": "^1.15.2"
},
"nyc": {
"exclude": [
"**/*.test.js",
"build"
]
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix ./src",
"git add"
]
}
}