-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.01 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
{
"name": "ds-directory",
"private": true,
"type": "module",
"packageManager": "pnpm@11.5.3",
"scripts": {
"dev": "pnpm build:data && vite dev",
"build:data": "tsx scripts/build-data-index.ts && tsx scripts/build-demos.ts",
"check:data": "tsx scripts/build-data-index.ts --check",
"verify:colors": "tsx scripts/verify-shadcn-colors.ts",
"snapshot": "tsx scripts/pipeline.ts snapshot",
"extract": "tsx scripts/pipeline.ts extract",
"drift": "tsx scripts/pipeline.ts drift",
"test": "vitest run",
"build": "pnpm build:data && vite build",
"preview": "vite preview",
"typecheck": "pnpm build:data && tsc --noEmit",
"check": "oxlint . && oxfmt --check .",
"check:fix": "oxlint --fix . && oxfmt .",
"clean": "git clean -xdf .output .nitro .cache .turbo node_modules"
},
"dependencies": {
"@base-ui/react": "1.4.1",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource/geist-mono": "^5.2.7",
"@internationalized/date": "^3.12.2",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/react-router": "^1.170.1",
"@tanstack/react-start": "^1.168.2",
"cnfast": "^0.0.8",
"lucide-react": "^1.16.0",
"react": "^19.2.1",
"react-aria": "^3.50.0",
"react-aria-components": "^1.19.0",
"react-dom": "^19.2.1",
"react-stately": "^3.48.0",
"recharts": "^3.8.1",
"starter-themes": "^0.0.2",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.0",
"tailwindcss-autocontrast": "^0.0.4",
"tailwindcss-react-aria-components": "^2.2.0",
"tailwindcss-with": "^0.0.2",
"tw-animate-css": "^1.4.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@tanstack/router-plugin": "^1.168.2",
"@types/node": "^24.12.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^6.0.2",
"nitro": "^3.0.260429-beta",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"tsx": "^4.21.0",
"typescript": "^7.0.2",
"vite": "^8.1.0",
"vitest": "^4.0.16"
}
}