-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.34 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.34 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
{
"name": "kubelb-dashboard",
"private": true,
"version": "0.1.0",
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@11.1.1",
"scripts": {
"setup": "pnpm install && pnpm --dir api install",
"dev": "node hack/dev.mjs",
"dev:frontend": "vite",
"dev:mock": "VITE_MOCK=true vite",
"dev:mock:host": "VITE_MOCK=true vite --host 0.0.0.0",
"dev:api": "pnpm --dir api dev",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:ui": "playwright test --config e2e/playwright.config.ts --ui",
"test:e2e:headed": "playwright test --config e2e/playwright.config.ts --headed",
"license:check": "bash hack/check-licenses.sh",
"fixtures:capture": "pnpm dlx tsx hack/capture-fixtures.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@rjsf/core": "^6.5.2",
"@rjsf/utils": "^6.5.2",
"@rjsf/validator-ajv8": "^6.5.2",
"@tanstack/react-query": "^5.100.9",
"@tanstack/react-router": "1.169.1",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"js-yaml": "^4.1.1",
"lucide-react": "^1.14.0",
"monaco-editor": "^0.55.1",
"monaco-yaml": "^5.4.1",
"next-themes": "^0.4.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.75.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-router-devtools": "1.166.13",
"@tanstack/router-plugin": "1.167.33",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"eslint": "~10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-no-secrets": "^2.3.3",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.2",
"msw": "^2.14.3",
"prettier": "^3.8.3",
"shadcn": "^4.7.0",
"tailwindcss": "^4.2.4",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.11",
"vitest": "^4.1.5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}