-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.12 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "tokra-nodejs-express-app",
"version": "1.0.0",
"description": "tokra-nodejs-express-app starter",
"engines": {
"node": "^16.0.0"
},
"scripts": {
"dev": "nodemon server/server.js",
"debug": "node --nolazy --inspect-brk=5858 server.js",
"start": "node server/server.js",
"check-coverage": "c8 report --check-coverage --lines 100",
"lint": "eslint --ignore-path .gitignore .",
"fix": "eslint --ignore-path .gitignore . --fix",
"test": "c8 mocha test --recursive --exit",
"clean": "rm -rf node_modules/ && rm -rf package-lock.json"
},
"type": "module",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run check-coverage"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"test"
],
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"helmet": "^5.0.2",
"ibm-cloud-env": "^0",
"swagger-ui-express": "^4.4.0",
"config": "^3.0.1",
"cors": "^2.8.5",
"express-handlebars": "^5.3.5",
"express-rate-limit": "^5.5.1",
"express-validator": "^6.13.0",
"handlebars": "^4.7.7",
"http-graceful-shutdown": "^2.2.3",
"le_node": "^1.8.0",
"lobars": "^1.2.0",
"lodash": "^4.17.21",
"newrelic": "8.9.1",
"node-fetch": "^2.6.7",
"morgan": "^1.9.1",
"winston": "^3.2.1",
"abort-controller": "^3.0.0",
"@instana/collector": "^2.1.0"
},
"devDependencies": {
"c8": "^7.11.3",
"chai": "^4.3.6",
"eslint": "^6.8.0",
"eslint-config-strongloop": "^2.1.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"supertest": "^6.2.3",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.2",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^22.7.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.4.7",
"jest-extended": "^1.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-process": "^1.4.1",
"node-notifier": "^10.0.0",
"@cucumber/cucumber": "^7.3.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"chai-string": "^1.5.0",
"sonarqube-scanner": "^2.8.1",
"rewire": "^6.0.0"
},
"license": "Apache-2.0",
"resolutions": {
"ajv": "^6.12.3",
"ajv-keywords": "^2.1.1",
"ansi-regex": "^5.0.1",
"async": "^3.2.2",
"download": "^8.0.0",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"log4js": "^6.4.0",
"marked": "^4.0.10",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"swagger-ui-dist": "^4.1.3",
"moment": ">=2.29.2",
"glob-parent": "6.0.2",
"babel-plugin-istanbul": "^6.1.1"
},
"overrides": {
"ajv": "^6.12.3",
"ajv-keywords": "^2.1.1",
"ansi-regex": "^5.0.1",
"async": "^3.2.2",
"download": "^8.0.0",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"log4js": "^6.4.0",
"marked": "^4.0.10",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"swagger-ui-dist": "^4.1.3",
"moment": ">=2.29.2",
"glob-parent": "6.0.2",
"babel-plugin-istanbul": "^6.1.1"
}
}