-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 4.02 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
{
"name": "dtsse-ardoq-adapter",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"start": "NODE_ENV=production ts-node -r tsconfig-paths/register src/main/server.ts",
"start:dev": "nodemon --config nodemon.json",
"lint": "eslint . && prettier --check .",
"lint:fix": "prettier --write . && eslint --fix .",
"build": "yarn webpack --config webpack.config.js",
"build:prod": "NODE_ENV=production yarn webpack --mode production --config webpack.config.js",
"test": "npx if-env CI=true && exit 0 || yarn test:unit --detectOpenHandles",
"test:unit": "jest",
"test:a11y": "echo 'Not required' && exit 0",
"test:functional": "echo 'Not required' && exit 0",
"test:coverage": "jest --coverage",
"test:routes": "jest -c jest.routes.config.js",
"test:smoke": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest -c jest.smoke.config.js",
"cichecks": "yarn build && yarn lint && yarn test && yarn test:routesØ",
"prepare": "husky install",
"prettier": "prettier --write ."
},
"dependencies": {
"@hmcts/nodejs-healthcheck": "1.8.5",
"@hmcts/nodejs-logging": "4.0.4",
"@hmcts/properties-volume": "1.2.0",
"applicationinsights": "3.2.1",
"axios": "1.7.2",
"axios-request-throttle": "^1.0.0",
"body-parser": "1.20.2",
"compression": "^1.7.4",
"config": "3.3.12",
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
"dotenv": "^16.4.5",
"express": "4.19.2",
"express-nunjucks": "3.1.2",
"express-openapi-validator": "^5.2.0",
"glob": "10.4.5",
"govuk-frontend": "5.4.1",
"helmet": "7.1.0",
"jquery": "3.7.1",
"lodash": "4.17.21",
"nunjucks": "3.2.4",
"require-directory": "2.1.1",
"serve-favicon": "2.5.0",
"snyk-nodejs-lockfile-parser": "^1.57.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typed-rest-client": "^1.8.11",
"typescript": "5.5.2"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/eslint-parser": "7.24.7",
"@babel/preset-env": "7.24.7",
"@jest/globals": "^29.7.0",
"@types/body-parser": "1.19.5",
"@types/chai-as-promised": "7.1.8",
"@types/compression": "^1.7.5",
"@types/config": "3.3.4",
"@types/cookie-parser": "1.4.7",
"@types/csurf": "1.11.5",
"@types/es6-promisify": "6.0.4",
"@types/express": "4.17.21",
"@types/glob": "8.1.0",
"@types/jest": "^29.5.12",
"@types/lodash": "4.17.7",
"@types/mini-css-extract-plugin": "2.5.1",
"@types/mocha": "^10.0.7",
"@types/node": "20.14.8",
"@types/nunjucks": "3.2.6",
"@types/require-directory": "2.1.6",
"@types/serve-favicon": "2.5.7",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"axios-debug-log": "1.0.0",
"babel-loader": "9.1.3",
"chai": "5.1.1",
"chai-as-promised": "8.0.0",
"chokidar": "3.6.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"debug": "4.3.6",
"eslint": "^9.5.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"globby": "^14.0.1",
"html-webpack-plugin": "5.6.0",
"husky": "9.1.4",
"jest": "29.7.0",
"jest-html-reporter": "3.10.2",
"jest-junit": "16.0.0",
"jest-mock": "^29.7.0",
"lint-staged": "15.2.7",
"mini-css-extract-plugin": "2.9.0",
"nock": "13.5.4",
"nodemon": "3.1.4",
"playwright": "^1.45.0",
"prettier": "^3.3.2",
"sass": "1.77.8",
"sass-loader": "14.2.1",
"sinon": "15.2.0",
"sinon-chai": "3.7.0",
"style-loader": "3.3.4",
"supertest": "^6.3.4",
"ts-jest": "29.2.3",
"ts-loader": "9.5.1",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "7.3.0",
"webpack-node-externals": "3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts}": "eslint --fix"
},
"packageManager": "yarn@3.8.3"
}