-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.16 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
{
"name": "client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@autoform/react": "^4.0.0",
"@autoform/shadcn": "^1.0.1",
"@autoform/zod": "^5.0.0",
"@deck.gl/core": "^9.2.0",
"@deck.gl/layers": "^9.2.0",
"@deck.gl/react": "^9.2.0",
"@fontsource/inter": "^5.2.8",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/line-clamp": "^0.4.4",
"@tanstack/react-query": "^5.96.2",
"@tanstack/react-virtual": "^3.13.12",
"@types/dagre": "^0.7.53",
"@types/react-router-dom": "^5.3.3",
"@xyflow/react": "^12.8.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dagre": "^0.8.5",
"elkjs": "^0.10.0",
"lucide-react": "^0.516.0",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.16.0",
"recharts": "^2.15.4",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.0.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.8",
"autoprefixer": "^10.4.21",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.15",
"tailwindcss": "^3.4.17",
"tailwindcss-cli": "^0.1.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"overrides": {
"js-yaml": "4.2.0",
"esbuild": "0.28.1"
},
"pnpm": {
"overrides": {
"js-yaml": "4.2.0",
"esbuild": "0.28.1"
}
}
}