-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.88 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
{
"name": "express-react",
"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",
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"test": "jest --coverage --watchAll=false",
"lint": "yarn eslint .",
"lint-fix": "yarn eslint . --fix",
"gcp-build": "react-scripts build && tsc --project tsconfig.server.json",
"dev": "concurrently --kill-others-on-fail \"yarn start-server\" \"yarn start-react\""
},
"proxy": "http://localhost:5000",
"keywords": [],
"author": "",
"license": "ISC",
"pre-commit": [
"lint-fix"
],
"dependencies": {
"@google-cloud/profiler": "^5.0.3",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^14.2.1",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.3",
"@types/node": "^18.11.11",
"@types/pino": "^7.0.5",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"axios": "^0.24.0",
"blaise-api-node-client": "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",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.5",
"express": "^4.17.1",
"formik": "^2.2.9",
"google-auth-library": "^8.7.0",
"history": "^4.9.0",
"jest-cucumber": "^3.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.20",
"node-fetch": "^3.3.2",
"pino": "^8.7.0",
"pino-http": "^8.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"react-scripts": "5.0.1",
"typescript": "~5.3.3"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/ejs": "^3.0.5",
"@types/lodash": "^4.14.165",
"@types/react-router-dom": "^5.3.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"axios-mock-adapter": "^1.21.1",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest-extended": "^0.11.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typemoq": "^2.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}