-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 3.37 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
{
"name": "blaise-access-management",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "node ./dist/index.js",
"start-server": "tsc --project tsconfig.server.json && node ./dist/index.js | pino-pretty -c -t",
"start-react": "react-scripts start",
"build-react": "react-scripts --openssl-legacy-provider build",
"rebuild-test": "yarn build-react && tsc --project tsconfig.server.json && jest --coverage --watchAll=false",
"test": "jest --coverage --watchAll=false",
"gcp-build": "yarn build-react && tsc --project tsconfig.server.json",
"lint-fix": "node_modules/.bin/eslint . --fix",
"lint": "yarn eslint .",
"dev": "concurrently --kill-others-on-fail \"yarn start-server\" \"yarn start-react\""
},
"proxy": "http://localhost:5002",
"keywords": [],
"author": "",
"license": "ISC",
"pre-commit": [
"lint-fix"
],
"resolutions": {
"formik": "2.4.2"
},
"dependencies": {
"@google-cloud/logging": "^9.6.0",
"@google-cloud/profiler": "^4.1.1",
"@testing-library/dom": "^8.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.4",
"blaise-api-node-client": "git+https://github.com/ONSdigital/blaise-api-node-client",
"blaise-design-system-react-components": "git+https://github.com/ONSdigital/blaise-design-system-react-components#0.14.1",
"blaise-login-react": "git+https://github.com/ONSdigital/blaise-login-react#1.1.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.10",
"express": "^4.19.2",
"formik": "2.4.2",
"history": "^4.9.0",
"jest-cucumber": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"multer": "^1.4.2",
"number-to-words": "^1.2.4",
"pino": "^8.17.2",
"pino-http": "^5.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-csv-reader": "^3.3.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"react-scripts": "5.0.0",
"typemoq": "^2.1.0",
"typescript": "~5.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.8",
"@types/jest": "26.0.20",
"@types/lodash": "^4.14.168",
"@types/multer": "^1.4.5",
"@types/node": "^15.12.2",
"@types/number-to-words": "^1.2.0",
"@types/pino-http": "^5.4.0",
"@types/pino-pretty": "^4.7.1",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"axios-mock-adapter": "^1.19.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"pino-pretty": "^4.7.1",
"supertest": "^6.1.6"
},
"peerDependencies": {
"react-router": "^6.21.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}