-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.1 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
{
"name": "cuview",
"private": true,
"version": "2.0.0",
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.3",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"curio:compat": "node scripts/curio-compat/cli.mjs",
"typecheck": "tsc -b --noEmit",
"check:ui-html": "node scripts/check-ui-html.mjs",
"check:ui-baseline": "node scripts/check-ui-baseline.mjs",
"lint": "biome lint src/",
"lint:fix": "biome lint --fix src/",
"format": "biome format --write src/",
"format:check": "biome format src/",
"check": "pnpm run typecheck && biome check src/ scripts/curio-compat/ && pnpm run check:ui-html && pnpm run check:ui-baseline",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@fontsource-variable/inter": "^5.2.8",
"@radix-ui/react-slot": "^1.3.0",
"@rjsf/core": "^6.6.2",
"@rjsf/shadcn": "^6.6.2",
"@rjsf/utils": "^6.6.2",
"@rjsf/validator-ajv8": "^6.6.2",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-form": "^1.33.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-router": "^1.170.16",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"lucide-react": "^1.20.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-is": "^19.2.7",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@tanstack/router-plugin": "^1.168.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"jsdom": "^29.1.1",
"shadcn": "^4.11.0",
"typescript": "~6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}