-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.71 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
{
"name": "nodejs-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"prepare": "husky install",
"watch": "NODE_ENV=development nodemon app.js -e js,json,hbs,html",
"dev": "NODE_ENV=development nodemon app.js",
"dev:win": "SET NODE_ENV=development&& nodemon app.js",
"prod": "NODE_ENV=production node app.js",
"lint": "./node_modules/.bin/eslint '{app,config,lib,bin,routes,www}/**/*.js'",
"lint:tests": "./node_modules/.bin/eslint 'test/**/*.js'",
"format": "./node_modules/.bin/prettier --write '{app,config,lib,bin,routes,www}/**/*.js'",
"format:tests": "./node_modules/.bin/prettier --write 'test/**/*.js'",
"format:check": "./node_modules/.bin/prettier --check '{app,config,lib,bin,routes,tests,www}/**/*.js'",
"linter": "npm run format:check && npm run lint",
"test": "./node_modules/.bin/jest --clear-cache && NODE_ENV=test node --expose-gc ./node_modules/.bin/jest --runInBand --logHeapUsage --detectOpenHandles --forceExit",
"test:win": "./node_modules/.bin/jest --clear-cache && NODE_ENV=test node --expose-gc ./node_modules/jest/bin/jest --runInBand --logHeapUsage --detectOpenHandles --forceExit",
"integration:dev": "./node_modules/.bin/cucumber-js -f ./node_modules/@cucumber/pretty-formatter ./test/cucumber/features --tags @debug",
"integration": "if [ \"$TRAVIS\" = \"true\" ]; then sleep 60 && ./node_modules/.bin/cucumber-js -f ./node_modules/@cucumber/pretty-formatter ./test/cucumber/features ; else ./node_modules/.bin/cucumber-js -f ./node_modules/@cucumber/pretty-formatter ./test/cucumber/features ; fi",
"sonarqube:scanner": "./node_modules/.bin/sonar-scanner -X",
"npm:audit": "npm audit --json | npm-audit-html --output audit/report.html"
},
"engines": {
"npm": "^8",
"node": "^16",
"yarn": "^1"
},
"license": "Apache2.0",
"dependencies": {
"@aws-sdk/client-health": "^3.87.0",
"compression": "^1.7.4",
"config": "^3.0.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "^4.17.1",
"express-handlebars": "^5.3.5",
"express-rate-limit": "^5.5.1",
"express-validator": "^6.13.0",
"handlebars": "^4.7.7",
"http-errors": "~1.6.3",
"http-graceful-shutdown": "^2.2.3",
"jade": "^1.11.0",
"le_node": "^1.8.0",
"lobars": "^1.2.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"morgan": "~1.9.1",
"newrelic": "8.9.1",
"node-fetch": "^2.6.7",
"object-sizeof": "^1.6.1",
"pretty-bytes": "^5.6.0",
"pretty-ms": "^7.0.1",
"pug": "^3.0.2",
"r7insight_node": "^3.3.0",
"rewire": "^6.0.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^3.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"babel-core": "^6.26.3",
"babel-plugin-rewire": "^1.2.0",
"babel-preset-airbnb": "^4.5.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"fast-check": "^2.19.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-extended": "^1.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-process": "^1.4.1",
"lint-staged": "^12.4.1",
"node-notifier": "^10.0.0",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"prettier-eslint": "^14.0.2",
"sonarqube-scanner": "^2.8.1",
"supertest": "^4.0.2"
},
"lint-staged": {
"**/*.js": "npm run linter",
"**/*.json": "npm run format"
},
"resolutions": {
"lodash": "^4.17.21"
},
"overrides": {
"lodash": "^4.17.21"
}
}