forked from guacsec/trustify-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.41 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
{
"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 .",
"check:write": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"start:dev": "npm run generate && rsbuild dev",
"start": "rsbuild preview",
"test": "NODE_ENV=test jest --rootDir=. --config=./config/jest.config.ts",
"generate": "openapi-ts -f ./config/openapi-ts.config.ts",
"preview": "rsbuild preview"
},
"dependencies": {
"@hey-api/client-axios": "^0.6.1",
"@hookform/resolvers": "^2.9.11",
"@patternfly/patternfly": "^5.4.0",
"@patternfly/react-charts": "^7.4.0",
"@patternfly/react-code-editor": "^5.4.0",
"@patternfly/react-core": "^5.4.0",
"@patternfly/react-log-viewer": "^5.3.0",
"@patternfly/react-table": "^5.4.0",
"@patternfly/react-tokens": "^5.4.0",
"@segment/analytics-next": "^1.64.0",
"@tanstack/react-query": "^5.61.0",
"@tanstack/react-query-devtools": "^5.61.0",
"axios": "^1.7.2",
"dayjs": "^1.11.7",
"file-saver": "^2.0.5",
"monaco-editor": "0.34.1",
"oidc-client-ts": "^2.4.0",
"packageurl-js": "^2.0.1",
"pretty-bytes": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.43.1",
"react-markdown": "^8.0.7",
"react-monaco-editor": "0.51.0",
"react-oidc-context": "^2.3.1",
"react-router-dom": "^6.21.1",
"usehooks-ts": "^2.14.0",
"web-vitals": "^0.2.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.64.5",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@rsbuild/core": "^1.2.8",
"@rsbuild/plugin-react": "^1.1.0",
"@types/file-saver": "^2.0.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"raw-loader": "^4.0.2",
"msw": "^2.6.4",
"typescript": "^5.7.3"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nyc": {
"exclude": "client/src/reportWebVitals.ts"
},
"msw": {
"workerDirectory": "public"
}
}