-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.24 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.24 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ccd-case-activity-api",
"version": "0.0.2",
"private": true,
"engines": {
"node": "^20.11.0"
},
"scripts": {
"setup": "cross-env NODE_PATH=. yarn node --version",
"start": "cross-env NODE_PATH=. yarn node server.js",
"test": "NODE_ENV=test mocha --exit --recursive test/spec app/user",
"test:end2end": "NODE_ENV=test mocha --exit test/e2e --timeout 15000",
"test:smoke": "echo 'TODO - Ignore SMOKE tests'",
"test:functional": "./aat/gradlew -p aat functional",
"fortifyScan": "./aat/gradlew -p aat fortifyScan",
"test:coverage": "NODE_ENV=test NODE_PATH=. nyc --cache false yarn run test",
"test:coverage-e2e": "NODE_ENV=test NODE_PATH=. istanbul cover _mocha -- --timeout 15000 --recursive test/e2e",
"test:a11y": "echo 'TODO: Accessibility tests'",
"sonar-scan": "NODE_PATH=. sonar-scanner -X",
"highLevelDataSetup": "echo './aat/gradlew -p aat highLevelDataSetup --args=$1' > ./temp.sh && sh ./temp.sh",
"lint": "NODE_PATH=. eslint app.js app/**/*.js",
"lint-fix": "NODE_PATH=. eslint --fix app.js app/**/*.js test/**/*.js"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "coverage",
"all": true,
"include": [
"app.js",
"server.js",
"app/**/*.js"
]
},
"dependencies": {
"@hmcts/nodejs-healthcheck": "^1.8.0",
"@hmcts/nodejs-logging": "^4.0.4",
"@hmcts/properties-volume": "^1.0.0",
"applicationinsights": "3.15.0",
"body-parser": "^2.2.1",
"config": "^1.26.1",
"connect-timeout": "^1.9.0",
"cookie": "^1.0.0",
"cross-env": "^5.2.0",
"debug": "~2.6.3",
"express": "^5.0.1",
"formidable": "^3.5.4",
"ioredis": "^3.1.4",
"joi": "^17.2.1",
"jwt-decode": "^2.2.0",
"lodash": "4.18.1",
"moment": "^2.29.4",
"morgan": "^1.9.1",
"nocache": "^2.1.0",
"node-cache": "^5.1.0",
"node-cron": "^1.2.1",
"node-fetch": "^2.6.7",
"or": "^0.2.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"chai": "^6.0.0",
"chai-arrays": "^2.0.0",
"chai-http": "^5.0.0",
"eslint": "9.39.4",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"jasmine-node": "3",
"mocha": "7",
"mock-require": "^3.0.3",
"nock": "^12.0.3",
"node-mocks-http": "^1.7.0",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"sinon": "^18.0.1",
"sinon-chai": "^3.5.0",
"sinon-express-mock": "^2.2.1",
"sonar-scanner": "^3.1.0",
"supertest": "^3.0.0"
},
"overrides": {
"qs": "6.15.2"
},
"resolutions": {
"async": "^3.0.0",
"lodash": "4.18.1",
"lodash.pick": "3.1.0",
"yargs-parser": "^18.1.2",
"minimist": "^1.2.6",
"y18n": "^4.0.1",
"hosted-git-info": "^3.0.8",
"underscore": "^1.13.1",
"ansi-regex": "^6.0.0",
"path-parse": "^1.0.7",
"glob-parent": "^5.1.2",
"moment": "^2.29.4",
"ajv": "6.15.0",
"json5": "^2.2.2",
"js-yaml": "^4.1.1",
"minimatch": "^3.0.5",
"cookiejar": "^2.1.4",
"flat": "^5.0.1",
"qs": "6.15.2",
"semver": "7.8.4",
"@grpc/grpc-js": "1.14.4",
"cross-spawn": "^7.0.6",
"body-parser": "^2.2.1",
"protobufjs": "7.6.3",
"@protobufjs/utf8": "1.1.1"
},
"packageManager": "yarn@4.16.0"
}