-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.65 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
{
"name": "deploy-questionnaire-service",
"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 build",
"test": "jest --coverage --watchAll=false",
"gcp-build": "GENERATE_SOURCEMAP=false react-scripts build && tsc --project tsconfig.server.json",
"lint-fix": "node_modules/.bin/eslint . --fix",
"dev": "concurrently --kill-others-on-fail \"yarn start-server\" \"yarn start-react\"",
"lint": "node_modules/.bin/eslint ."
},
"proxy": "http://localhost:5000",
"keywords": [],
"author": "",
"license": "ISC",
"pre-commit": [
"lint-fix"
],
"resolutions": {
"formik": "2.4.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@google-cloud/logging": "^9.6.0",
"@google-cloud/profiler": "^4.1.3",
"@google-cloud/storage": "^5.8.5",
"axios": "^1.7.4",
"blaise-api-node-client": "git+https://github.com/ONSdigital/blaise-api-node-client#1.1.0",
"blaise-design-system-react-components": "git+https://github.com/ONSdigital/blaise-design-system-react-components#0.14.0",
"blaise-iap-node-provider": "git+https://github.com/ONSdigital/blaise-iap-node-provider",
"blaise-login-react": "git+https://github.com/ONSdigital/blaise-login-react#1.1.1",
"bus-api-node-client": "git+https://github.com/ONSdigital/blaise-uac-service-node-client",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"ejs": "^3.1.10",
"express": "^4.17.1",
"formik": "2.4.2",
"google-auth-library": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest-cucumber": "^3.0.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"node-forge": "1.3.1",
"nth-check": "2.1.1",
"pino-http": "^5.7.0",
"react": "^18.2.0",
"react-csv-downloader": "^2.7.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"react-scripts": "5.0.0",
"react-timeago": "^7.2.0",
"react-yearly-calendar": "^1.2.6",
"typescript": "~5.3.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@testing-library/dom": "^8.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^13.2.1",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.2",
"@types/pino-http": "^5.7.0",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@types/react-timeago": "^4.1.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"axios-mock-adapter": "^1.20.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-silent-reporter": "^0.5.0",
"pino-pretty": "^7.0.0",
"supertest": "^6.1.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}