-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.54 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.54 KB
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
114
115
116
117
118
119
120
121
122
123
{
"name": "scigateway",
"version": "4.1.0",
"type": "module",
"private": true,
"resolutions": {
"@types/react": "18.3.23",
"@types/react-dom": "18.3.7"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "5.15.10",
"@mui/material": "5.15.10",
"@types/history": "4.7.11",
"@types/jest": "29.5.2",
"@types/js-cookie": "3.0.1",
"@types/react-dom": "18.3.7",
"@types/react-redux-toastr": "8.0.0",
"@types/react-router-dom": "5.3.3",
"@types/redux-logger": "3.0.8",
"@vitejs/plugin-react": "^5.0.0",
"axios": "1.13.5",
"browserslist": "4.28.1",
"browserslist-to-esbuild": "2.1.1",
"connected-react-router": "6.9.3",
"husky": "9.1.7",
"i18next": "25.8.13",
"i18next-browser-languagedetector": "8.2.0",
"i18next-http-backend": "3.0.2",
"js-cookie": "3.0.1",
"loglevel": "1.9.1",
"prettier": "3.8.1",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "16.5.4",
"react-joyride": "2.9.3",
"react-redux": "8.1.2",
"react-redux-toastr": "8.0.0",
"react-router-dom": "5.3.0",
"redux": "4.2.1",
"redux-logger": "3.0.6",
"redux-thunk": "3.1.0",
"single-spa": "5.9.4",
"typeface-roboto": "1.1.13",
"typescript": "5.9.2",
"vite": "5.4.21"
},
"scripts": {
"dev": "cross-env concurrently \"yarn serve:plugins\" \"node server/auth-server.js\" \"vite --open\"",
"build": "tsc --project tsconfig.build.json && vite build",
"preview": "vite preview",
"preview:build": "yarn build && yarn preview",
"test": "vitest --coverage",
"lint": "eslint --max-warnings=0 --ext=tsx --ext=ts --ext=js --ext=jsx --fix ./src",
"lint:cypress": "eslint --ext=tsx --ext=js --ext=jsx --fix ./cypress",
"serve:plugins": "node micro-frontend-tools/serve-plugins.js",
"build:e2e": "cross-env GENERATE_SOURCEMAP=false yarn build",
"e2e:serve": "yarn build:e2e && concurrently \"node server/auth-server.js e2e\" \"node ./server/e2e-test-server.js\" \"docker compose -f server/keycloak/docker-compose.yml up -d\"",
"e2e:interactive": "start-server-and-test e2e:serve \"http://localhost:3000|http://localhost:8081/realms/testrealm/.well-known/openid-configuration\" cy:open",
"e2e": "start-server-and-test e2e:serve \"http://localhost:3000|http://localhost:8081/realms/testrealm/.well-known/openid-configuration\" cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"postinstall": "husky; yarn copy-cdn-fallbacks",
"copy-cdn-fallbacks": "node -e \"const fs = require('fs'); fs.copyFile('node_modules/react/umd/react.production.min.js', 'public/react.production.min.js', (err) => { if (err) throw err;}); fs.copyFile('node_modules/react-dom/umd/react-dom.production.min.js', 'public/react-dom.production.min.js', (err) => { if (err) throw err;});\""
},
"lint-staged": {
"src/**/*.{tsx,js,jsx,json}": [
"eslint --max-warnings=0 --ext=tsx --ext=ts --ext=js --ext=jsx --fix",
"prettier --config .prettierrc --write"
],
"cypress/**/*.{tsx,js,jsx}": [
"eslint --fix",
"prettier --config .prettierrc --write"
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/jsonwebtoken": "9.0.1",
"@types/node": "24.12.0",
"@types/react": "18.3.23",
"@types/react-redux": "7.1.20",
"@types/react-router": "5.1.20",
"@types/redux-mock-store": "1.5.0",
"@vitest/coverage-v8": "2.1.9",
"axios-mock-adapter": "1.22.0",
"concurrently": "9.2.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "10.1.0",
"cypress": "15.11.0",
"eslint": "9.39.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-cypress": "^5.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-testing-library": "7.16.0",
"express": "5.2.1",
"globals": "^17.0.0",
"jsdom": "24.1.3",
"jsonwebtoken": "9.0.0",
"jwks-rsa": "3.2.0",
"lint-staged": "16.3.2",
"redux-mock-store": "1.5.4",
"serve": "14.2.0",
"start-server-and-test": "~2.1.0",
"typescript-eslint": "8.56.0",
"vitest": "2.1.9",
"wait-on": "7.2.0"
},
"packageManager": "yarn@4.12.0"
}