-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.27 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.27 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
{
"name": "@trustify-ui/client",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"clean:all": "rimraf ./dist ./node_modules",
"build": "npm run generate && rsbuild build",
"check": "biome check --error-on-warnings .",
"check:write": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"start:dev": "npm run generate && rsbuild dev",
"start": "rsbuild preview",
"test": "cross-env NODE_ENV=test jest --rootDir=. --config=./config/jest.config.ts",
"generate": "openapi-ts -f ./config/openapi-ts.config.ts",
"preview": "rsbuild preview"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@patternfly/patternfly": "^6.4.0",
"@patternfly/react-charts": "^8.4.1",
"@patternfly/react-core": "^6.4.1",
"@patternfly/react-log-viewer": "^6.3.0",
"@patternfly/react-table": "^6.4.1",
"@patternfly/react-tokens": "^6.4.0",
"@tanstack/react-query": "^5.90.11",
"@tanstack/react-query-devtools": "^5.61.0",
"axios": "^1.13.5",
"dayjs": "^1.11.18",
"file-saver": "^2.0.5",
"oidc-client-ts": "^3.3.0",
"packageurl-js": "^2.0.1",
"pretty-bytes": "^6.1.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.66.1",
"react-markdown": "^8.0.7",
"react-oidc-context": "^3.3.0",
"react-router-dom": "^7.8.1",
"usehooks-ts": "^3.1.1",
"victory": "^37.3.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.84.1",
"@rsbuild/core": "^1.5.11",
"@rsbuild/plugin-react": "^1.4.0",
"@rsbuild/plugin-type-check": "^1.2.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/file-saver": "^2.0.2",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"raw-loader": "^4.0.2",
"swc-plugin-coverage-instrument": "^0.0.28"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nyc": {},
"msw": {
"workerDirectory": "public"
}
}