-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "plan-visualizer",
"version": "1.0.0",
"type": "module",
"description": "Visualize DataFusion execution plans as interactive diagrams",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "tsc && vite build && vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"type-check": "tsc --noEmit"
},
"keywords": [
"react",
"plan-visualizer",
"datafusion",
"excalidraw",
"typescript",
"tailwind",
"pwa"
],
"author": "",
"license": "MIT",
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@hookform/resolvers": "^3.10.0",
"@tanstack/react-table": "^8.21.3",
"clsx": "^2.1.1",
"idb": "^8.0.3",
"lucide-react": "^0.294.0",
"plan-viz": "^0.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.66.1",
"react-router-dom": "^6.30.2",
"recharts": "^3.5.0",
"tailwind-merge": "^2.6.0",
"vite-plugin-pwa": "^1.1.0",
"workbox-precaching": "^7.4.0",
"workbox-window": "^7.4.0",
"zod": "^4.1.13",
"zustand": "^5.0.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/workbox-precaching": "^4.3.1",
"@types/workbox-window": "^4.3.4",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.4"
}
}