-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.71 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
{
"name": "wfc-report",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"generate": "json2ts ../src/main/resources/wfc/schemas/report.yaml src/types/GeneratedTypes.tsx && ts-to-zod src/types/GeneratedTypes.tsx src/types/GeneratedTypesZod.ts",
"build": "tsc -b && vite build",
"installAndBuild": "npm install && npm run generate && vitest --no-watch && tsc -b && vite build && npm run copyRunFiles",
"copyRunFiles": "cpx webreport.bat \"../target/classes/webreport\" && cpx webreport.command \"../target/classes/webreport\" && cpx webreport.py \"../target/classes/webreport\" && cpx \"src-e2e/static/robots.txt\" \"../target/classes/webreport\"",
"lint": "eslint .",
"preview": "vite preview",
"debug": "vite build && cpx \"src-e2e/static/**/*\" \"../target/classes/webreport\" && vite preview",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-progress": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/vite": "^4.0.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"json-schema-to-typescript": "^15.0.4",
"lucide-react": "^0.483.0",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.15.1",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.14",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.67"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "0.19.12",
"@tailwindcss/oxide-linux-arm64-gnu": "^4.0.1",
"@tailwindcss/oxide-linux-arm64-musl": "^4.0.1",
"@tailwindcss/oxide-linux-x64-musl": "^4.0.1",
"lightningcss-linux-arm64-gnu": "^1.29.1",
"lightningcss-linux-arm64-musl": "^1.29.1",
"lightningcss-linux-x64-musl": "^1.29.1"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "3.1.3",
"cpx": "^1.5.0",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"happy-dom": "^17.4.7",
"ts-to-zod": "^3.15.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vitest": "^3.1.3"
}
}