-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.97 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
{
"name": "blaise-editing-service-poc",
"version": "0.1.0",
"private": true,
"target": "esnext",
"module": "esnext",
"scripts": {
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"eject-react": "react-scripts eject",
"clean": "npx rimraf dist && npx rimraf build",
"test-react": "yarn clean && yarn build-react && jest --coverage --watchAll=false",
"test-server": "yarn clean && yarn build-server && jest --coverage --watchAll=false",
"test": "yarn clean && yarn build-react && yarn build-server && jest --coverage --watchAll=false",
"lint": "yarn eslint . --fix",
"build-server": "tsc --project tsconfig.server.json",
"run-server": "node ./dist/server/index.js",
"start-server": "yarn lint && yarn clean && yarn build-react && yarn build-server && yarn run-server",
"build-server-watch": "yarn build-server -w",
"run-server-watch": "nodemon ./dist/server/index.js",
"start-server-watch": "concurrently npm:build-server-watch npm:run-server-watch",
"dev": "concurrently npm:start-react npm:start-server-watch",
"gcp-build": "GENERATE_SOURCEMAP=false react-scripts build && tsc --project tsconfig.server.json",
"start": "node ./dist/server/index.js"
},
"proxy": "http://localhost:5000",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"blaise-api-node-client": "https://github.com/ONSdigital/blaise-api-node-client#9ee85ce5f4a6d3c84733703e1637dfa58c23f3b5",
"blaise-design-system-react-components": "git+https://github.com/ONSdigital/blaise-design-system-react-components#14786b365ff2bf5cc3a393ba2ae3cd2e2dd857b6"
},
"dependencies": {
"@google-cloud/logging-winston": "^6.0.0",
"axios": "^1.7.9",
"blaise-api-node-client": "https://github.com/ONSdigital/blaise-api-node-client#9ee85ce5f4a6d3c84733703e1637dfa58c23f3b5",
"blaise-design-system-react-components": "git+https://github.com/ONSdigital/blaise-design-system-react-components#14786b365ff2bf5cc3a393ba2ae3cd2e2dd857b6",
"blaise-login-react-client": "https://gitpkg.now.sh/ONSdigital/blaise-login-react/blaise-login-react-client?f7fc532e1938ccb45831816311c85336510383ae",
"blaise-login-react-server": "https://gitpkg.now.sh/ONSdigital/blaise-login-react/blaise-login-react-server?f7fc532e1938ccb45831816311c85336510383ae",
"concurrently": "^8.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.20.0",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2",
"react-scripts": "5.0.1",
"typescript": "*",
"web-vitals": "^2.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.12",
"@types/express-list-endpoints": "^6.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"axios-mock-adapter": "^1.21.5",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"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",
"express-list-endpoints": "^6.0.0",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.1",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typemoq": "^2.1.0"
}
}