-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
92 lines (92 loc) · 2.6 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
{
"name": "ccd-api-gateway-web",
"version": "1.4.0",
"private": true,
"engines": {
"node": "^18.17.0"
},
"scripts": {
"start": "cross-env NODE_PATH=. yarn node server.js",
"setup": "cross-env NODE_PATH=. yarn node --version",
"lint": "NODE_PATH=. eslint --ignore-pattern coverage .",
"test": "yarn test:unit",
"test:unit": "NODE_ENV=test NODE_PATH=. mocha 'test/**/*.spec.js' --reporter spec --recursive",
"test:coverage": "NODE_ENV=test NODE_PATH=. nyc mocha 'test/**/*.spec.js'",
"fortifyScan": "./test/java/gradlew -p test/java fortifyScan",
"test:smoke": "echo SMOKE TESTS NOT CONFIGURED",
"test:functional": "echo 'TODO - FUNCTIONAL TEST'",
"test:a11y": "NODE_PATH=.",
"sonar-scan": "NODE_PATH=. sonar-scanner -X"
},
"dependencies": {
"@hmcts/nodejs-healthcheck": "^1.8.0",
"@hmcts/nodejs-logging": "^4.0.4",
"@hmcts/properties-volume": "^0.0.14",
"applicationinsights": "2.9.1",
"body-parser": "^1.20.1",
"config": "^3.3.7",
"cookie": "^0.7.0",
"cookie-parser": "~1.4.3",
"cross-env": "^5.2.1",
"debug": "~2.6.3",
"dont-sniff-mimetype": "^1.1.0",
"express": "^5.0.0",
"form-data": "^2.1.4",
"handlebars": "^4.7.7",
"http-proxy-middleware": "^3.0.3",
"https-proxy-agent": "^2.2.3",
"js-yaml": "^3.13.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"mem": "^6.0.0",
"nocache": "^2.1.0",
"node-cache": "^5.1.0",
"node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"otp": "^0.1.3"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-http": "^4.2.1",
"eslint": "^6.5.1",
"eslint-plugin-mocha": "^6.1.1",
"fetch-mock": "^6.5.2",
"git-message": "^2.0.2",
"istanbul": "^0.4.5",
"jsonwebtoken": "^9.0.0",
"mocha": "^5.2.0",
"moment": "^2.29.4",
"nock": "^13.3.2",
"pa11y": "^5.2.0",
"proxyquire": "^2.0.1",
"should": "^13.2.3",
"should-http": "^0.1.0",
"sinon": "4.1.3",
"sinon-chai": "^2.11.0",
"sinon-express-mock": "^2.0.0",
"sonar-scanner": "^3.1.0",
"supertest": "^6.3.3"
},
"resolutions": {
"js-yaml": "3.13.1",
"lodash": "^4.17.21",
"handlebars": "^4.7.7",
"mem": "^6.0.0",
"minimist": "^1.2.6",
"ini": "^1.3.7",
"glob-parent": "^5.1.2",
"ws": "^6.2.2",
"ansi-regex": "^5.0.1",
"follow-redirects": "^1.15.6",
"moment": "^2.29.4",
"async": "^2.6.4",
"minimatch": "^3.0.5",
"json5": "^2.2.2",
"cookiejar": "^2.1.4",
"qs": "^6.10.3",
"@babel/traverse": "7.23.2",
"micromatch": "^4.0.8",
"braces": "^3.0.3"
},
"packageManager": "[email protected]"
}