-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
113 lines (113 loc) · 4.05 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
{
"name": "hocs-frontend",
"version": "1.0.0",
"description": "",
"repository": "github:UKHomeOffice/hocs-frontend",
"main": "index.js",
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"start": "node --max-http-header-size 80000 index.js",
"build-dev": "webpack --mode development --env NODE_ENV=development",
"build-prod": "webpack --mode production --env NODE_ENV=production",
"start-dev": "webpack -w --mode development --env NODE_ENV=development & nodemon --max-http-header-size 80000 index.js --env.NODE_ENV=development",
"start-prod": "webpack -w --mode production --env NODE_ENV=production & nodemon --max-http-header-size 80000 index.js --env.NODE_ENV=production",
"test": "jest --coverage",
"test:watch": "jest --watch",
"jest": "node_modules/jest/bin/jest.js .",
"lint": "eslint ./ --ext js,jsx --ignore-path .gitignore",
"audit": "npm audit",
"lint-staged": "node_modules/lint-staged/bin/lint-staged.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.131.0",
"@aws-sdk/node-http-handler": "^3.127.0",
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"chart.js": "^4.3.0",
"classnames": "^2.3.2",
"cookie-parser": "^1.4.6",
"core-js": "^3.23.3",
"csurf": "^1.10.0",
"dayjs": "^1.11.10",
"deep-equal": "^2.2.2",
"express": "^4.19.2",
"govuk-frontend": "^4.3.1",
"https-proxy-agent": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"prop-types": "^15.8.1",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-modal": "^3.16.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.3.0",
"react-select": "^5.7.7",
"regenerator-runtime": "^0.13.11",
"serialize-javascript": "^6.0.1",
"spdy": "^4.0.0",
"uuid": "^9.0.1",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.6",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/express": "^4.17.18",
"@types/react-plotly.js": "^2.6.1",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.7",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-plugin-react": "7.33.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^2.0.19",
"postcss-loader": "^7.3.3",
"pre-commit": "^1.2.2",
"sass": "^1.53.0",
"sass-loader": "^13.3.2",
"tar": "^6.2.0",
"typescript": "^5.2.2",
"webpack": "^5.76.2",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"pre-commit": [
"lint-staged",
"jest"
],
"lint-staged": {
"*.js": "node_modules/eslint/bin/eslint.js ./ --ignore-path .gitignore",
"*.jsx": "node_modules/eslint/bin/eslint.js ./ --ext .jsx --ignore-path .gitignore"
},
"overrides": {
"semver": "^7.5.4",
"optionator": "0.9.3"
}
}