-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.93 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.93 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
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
{
"name": "ccd-api-gateway-web",
"version": "1.4.0",
"private": true,
"engines": {
"node": "^22.0.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 --reporter=lcov --reporter=text --report-dir=coverage mocha 'test/**/*.spec.js' --recursive",
"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": "3.14.0",
"body-parser": "^2.0.0",
"brace-expansion": "^5.0.5",
"config": "^4.0.0",
"cookie": "^1.0.0",
"cookie-parser": "~1.4.3",
"cross-env": "^10.0.0",
"debug": "~4.4.0",
"dont-sniff-mimetype": "^1.1.0",
"express": "^5.0.0",
"form-data": "^4.0.4",
"formidable": "^3.5.4",
"handlebars": "^4.7.7",
"http-proxy-middleware": "^3.0.5",
"https-proxy-agent": "^2.2.3",
"js-yaml": "^4.1.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.18.1",
"mem": "^6.0.0",
"nocache": "^2.1.0",
"node-cache": "^5.1.0",
"node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"or": "^0.2.0",
"otp": "^0.1.3"
},
"devDependencies": {
"chai": "^6.0.0",
"chai-http": "^5.0.0",
"eslint": "^9.39.4",
"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": "^8.0.0",
"proxyquire": "^2.0.1",
"should": "^13.2.3",
"should-http": "^0.1.0",
"sinon": "4.5.0",
"sinon-chai": "^2.11.0",
"sinon-express-mock": "^2.0.0",
"sonar-scanner": "^3.1.0",
"supertest": "^6.3.3"
},
"resolutions": {
"form-data": "^4.0.4",
"js-yaml": "3.14.2",
"lodash": "^4.18.1",
"handlebars": "^4.7.7",
"mem": "^6.0.0",
"minimist": "^1.2.6",
"ini": "^7.0.0",
"glob-parent": "^6.0.0",
"ws": "^6.2.2",
"ansi-regex": "^5.0.1",
"follow-redirects": "^1.15.6",
"moment": "^2.29.4",
"async": "^3.0.0",
"minimatch": "^3.1.4",
"json5": "^2.2.2",
"cookiejar": "^2.1.4",
"qs": "^6.14.1",
"@babel/traverse": "7.29.7",
"@babel/core": "^7.28.5",
"micromatch": "^4.0.8",
"cross-spawn": "^7.0.6",
"braces": "^3.0.3",
"brace-expansion": "^5.0.5",
"picomatch": "^2.3.2"
},
"overrides": {
"picomatch": "^2.3.2"
},
"packageManager": "yarn@4.16.0"
}