-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
157 lines (157 loc) · 5.59 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "lau-frontend",
"version": "1.0.30",
"private": true,
"engines": {
"node": ">=18.16.0"
},
"packageManager": "[email protected]",
"scripts": {
"preinstall": "./bin/preinstalls.sh || true",
"setup": "NODE_PATH=. node createVersionFile.js",
"start": "NODE_ENV=production ./node_modules/.bin/ts-node -r tsconfig-paths/register src/main/server.ts",
"start:dev": "NODE_ENV=development nodemon --config nodemon.json",
"start:test": "NODE_ENV=test nodemon --config nodemon.json",
"lint": "stylelint '**/*.scss' && eslint . --fix",
"build": "yarn webpack --config webpack.config.js",
"build:prod": "NODE_ENV=production yarn webpack --mode production --config webpack.config.js",
"test": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:a11y": "NODE_ENV=test jest -c jest.a11y.config.js --maxWorkers 1",
"sonar-scan": "sonar-scanner",
"fortifyScan": "./src/test/java/gradlew -p src/test/java fortifyScan",
"test:smoke": "./bin/run-smoke-tests.sh",
"test:mutation": "yarn build && NODE_ENV=test stryker run src/test/mutation/stryker.conf.js",
"test:functional": "NODE_PATH=. node ./node_modules/codeceptjs/bin/codecept.js run-multiple parallel -c ./src/test/end-to-end/ --steps --reporter mocha-multi",
"test:fullfunctional": "./bin/run-e2e-tests.sh",
"test-crossbrowser-e2e": "NODE_PATH=. codeceptjs run-multiple ${BROWSER_GROUP:-'--all'} -c src/test/end-to-end/saucelabs.conf.js --plugins retryFailedStep --steps --grep '@crossbrowser' --reporter mocha-multi",
"test:crossbrowser": "./bin/run-crossbrowser-tests.sh",
"cichecks": "yarn && yarn build && yarn lint && yarn test",
"start-local-env": "./bin/start-local-env.sh",
"yarn-audit-fix": "yarn-audit-fix",
"stub:lau-case-backend": "NODE_PATH=. node src/test/service-stubs/lau-case-backend.js",
"stub:lau-idam-backend": "NODE_PATH=. node src/test/service-stubs/lau-idam-backend.js"
},
"dependencies": {
"@hmcts/cookie-manager": "^1.0.0",
"@hmcts/nodejs-healthcheck": "^1.7.3",
"@hmcts/nodejs-logging": "^4.0.4",
"@hmcts/properties-volume": "^1.0.0",
"@types/compression": "^1.7.2",
"@types/config": "^3.0.0",
"@types/connect-redis": "^0.0.23",
"@types/cookie-parser": "^1.4.2",
"@types/es6-promisify": "^6.0.0",
"@types/express": "^5.0.0",
"@types/glob": "^8.1.0",
"@types/helmet": "^4.0.0",
"@types/lodash": "^4.14.165",
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.6.6",
"@types/nunjucks": "^3.1.3",
"@types/require-directory": "^2.1.1",
"@types/serve-favicon": "^2.5.1",
"@types/totp-generator": "^0.0.8",
"accessible-autocomplete": "^3.0.0",
"applicationinsights": "^2.9.1",
"autobind-decorator": "^2.4.0",
"awilix": "^12.0.0",
"compression": "^1.7.4",
"config": "^3.3.2",
"connect-redis": "^6.0.0",
"cookie-parser": "^1.4.5",
"csrf-sync": "^4.0.3",
"email-validator": "^2.0.4",
"express": "^4.21.2",
"express-nunjucks": "^3.0.0",
"express-session": "^1.18.1",
"git-rev-sync": "^3.0.2",
"glob": "^11.0.0",
"govuk-frontend": "^5.0.0",
"helmet": "^8.0.0",
"ioredis": "^5.3.0",
"jquery": "^3.5.1",
"js-yaml": "^4.1.0",
"jwt-decode": "^4.0.0",
"launchdarkly-node-server-sdk": "^7.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^2.6.7",
"nunjucks": "^3.2.4",
"postcss": "^8.4.14",
"require-directory": "^2.1.1",
"serve-favicon": "^2.5.0",
"src": "link:./src",
"ssl-config": "^1.0.0",
"terser-webpack-plugin": "^5.3.10",
"totp-generator": "^1.0.0",
"ts-node": "^10.2.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^5.2.0",
"winston": "^2.4.6",
"ws": "^8.17.1"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.11.0",
"@babel/preset-env": "^7.22.20",
"@eslint/js": "^9.1.1",
"@hmcts/div-idam-test-harness": "^1.9.0",
"@stryker-mutator/core": "^8.0.0",
"@stryker-mutator/jest-runner": "^8.0.0",
"@types/chai-as-promised": "^8.0.0",
"@types/jest": "^29.5.5",
"@types/pa11y": "^5.3.5",
"@types/sinon": "^17.0.0",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-loader": "^9.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^8.0.0",
"codeceptjs": "^3.5.5",
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.0.0",
"debug": "^4.3.4",
"eslint": "^9.1.1",
"eslint-plugin-jest": "^28.3.0",
"globals": "^15.1.0",
"html-webpack-plugin": "^5.3.2",
"html_codesniffer": "^2.5.1",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.2.0",
"mocha": "^11.0.0",
"mocha-multi": "^1.1.6",
"mochawesome": "^7.1.2",
"nock": "^14.0.0",
"nodemon": "^3.0.0",
"pa11y": "^8.0.0",
"puppeteer": "^24.0.0",
"sass": "^1.63.4",
"sass-loader": "^14.0.0",
"sinon": "^19.0.0",
"sinon-chai": "^4.0.0",
"sonar-scanner": "^3.1.0",
"style-loader": "^4.0.0",
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.5.0",
"tslint": "6.1.3",
"typescript-eslint": "^8.0.0",
"webdriverio": "^9.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.0",
"webpack-dev-middleware": "^7.0.0",
"webpack-node-externals": "^3.0.0",
"yarn-audit-fix": "^10.0.0"
},
"resolutions": {
"send": "0.19.1",
"cookie": "1.0.2",
"cross-spawn": "7.0.6",
"nanoid": "^3.3.8"
}
}