-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.92 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
{
"name": "TODO",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "NODE_ENV=production ts-node -r tsconfig-paths/register src/main/server.ts",
"start:dev": "nodemon --config nodemon.json",
"lint": "sass-lint -v -q && eslint . --ext .js,.jsx,.ts,.tsx && 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",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:routes": "jest -c jest.routes.config.js",
"test:a11y": "jest -c jest.a11y.config.js --maxWorkers 15",
"test:smoke": "NODE_TLS_REJECT_UNAUTHORIZED=0 jest -c jest.smoke.config.js",
"test:functional": "NODE_TLS_REJECT_UNAUTHORIZED=0 codeceptjs --config ./src/test/functional/codecept.conf.js run --steps",
"cichecks": "yarn build && yarn rebuild puppeteer && yarn lint && yarn test && yarn test:routes && yarn test:a11y",
"prepare": "husky install"
},
"dependencies": {
"@hmcts/info-provider": "1.0.0",
"@hmcts/nodejs-healthcheck": "1.8.0",
"@hmcts/nodejs-logging": "4.0.4",
"@hmcts/properties-volume": "0.0.14",
"@types/body-parser": "1.19.2",
"@types/config": "3.3.0",
"@types/cookie-parser": "1.4.3",
"@types/csurf": "1.11.2",
"@types/es6-promisify": "6.0.1",
"@types/express": "4.17.14",
"@types/glob": "8.1.0",
"@types/lodash": "4.14.194",
"@types/node": "18.16.13",
"@types/nunjucks": "3.2.2",
"@types/require-directory": "2.1.2",
"@types/serve-favicon": "2.5.4",
"applicationinsights": "2.6.0",
"axios": "1.4.0",
"body-parser": "1.20.2",
"config": "3.3.9",
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
"express": "4.18.1",
"express-nunjucks": "2.2.5",
"glob": "10.2.5",
"govuk-frontend": "4.5.0",
"helmet": "6.1.5",
"jquery": "3.6.4",
"lodash": "4.17.21",
"nunjucks": "3.2.4",
"require-directory": "2.1.1",
"serve-favicon": "2.5.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.0.4"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/eslint-parser": "7.21.8",
"@babel/preset-env": "7.21.5",
"@codeceptjs/configure": "^0.10.0",
"@types/chai-as-promised": "7.1.5",
"@types/jest": "29.5.1",
"@types/mini-css-extract-plugin": "2.5.1",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"axios-debug-log": "1.0.0",
"babel-loader": "9.1.2",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"chokidar": "3.5.3",
"codeceptjs": "^3.3.6",
"copy-webpack-plugin": "9.1.0",
"css-loader": "6.7.4",
"debug": "4.3.4",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"html-webpack-plugin": "5.5.1",
"husky": "8.0.3",
"jest": "^29.4.0",
"jest-html-reporter": "3.7.1",
"jest-junit": "16.0.0",
"lint-staged": "13.2.2",
"mini-css-extract-plugin": "2.7.5",
"nock": "13.3.1",
"nodemon": "2.0.22",
"pa11y": "6.2.3",
"playwright": "1.32.3",
"prettier": "2.8.8",
"request": "2.88.2",
"sass": "1.62.1",
"sass-lint": "1.13.1",
"sass-loader": "13.2.2",
"sinon": "15.0.4",
"sinon-chai": "3.7.0",
"style-loader": "3.3.2",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"ts-loader": "9.4.2",
"webpack": "5.79.0",
"webpack-cli": "5.0.2",
"webpack-dev-middleware": "6.0.2",
"webpack-node-externals": "3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts}": "eslint --fix"
},
"packageManager": "[email protected]"
}