-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.73 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
{
"name": "ray-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--max-old-space-size=4096' next dev --turbopack",
"dev:debug": "NODE_OPTIONS='--max-old-space-size=4096 --inspect' next dev --turbopack",
"new": "npx tsx scripts/new-block.ts",
"generate:registry": "npx tsx scripts/generate-registry.ts",
"generate:registry:verbose": "npx tsx scripts/generate-registry.ts --verbose",
"validate:registry": "npx tsx scripts/generate-registry.ts validate public/r/registry.json",
"registry:info": "npx tsx scripts/generate-registry.ts info",
"generate:markdown": "npm run scripts/generate-markdown.ts ./content/components/",
"generate:rss": "npx tsx scripts/generate-rss.ts",
"export:frameworks": "npx tsx scripts/export-frameworks.ts",
"build": "npm run generate:registry && npm run generate:markdown && npm run generate:rss && next build",
"build:turbo": "NODE_OPTIONS='--max-old-space-size=8192' npm run generate:registry && npm run generate:markdown && npm run generate:rss && next build --turbopack",
"generate": "npm run generate:registry && npm run generate:markdown",
"start": "next start",
"clean": "rm -rf .next .turbo node_modules/.cache",
"lint": "npx ultracite lint"
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@tabler/icons-react": "^3.34.1",
"@tanstack/react-table": "^8.21.3",
"@wandry/analytics-sdk": "^1.16.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commander": "^14.0.0",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.542.0",
"motion": "^12.5.0",
"next": "^16.0.5",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.1.1",
"react-accessible-treeview": "^2.11.1",
"react-day-picker": "^9.9.0",
"react-dom": "19.1.1",
"react-dropzone": "^14.3.8",
"react-grab": "^0.0.54",
"react-hook-form": "^7.62.0",
"react-resizable-panels": "^3.0.5",
"recharts": "2.15.4",
"rehype-pretty-code": "^0.14.1",
"shadcn": "^3.0.0",
"shiki": "^3.17.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tw-animate-css": "^1.2.4",
"vaul": "^1.1.2",
"zod": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.12",
"@types/node": "^20",
"@types/react": "19.1.11",
"@types/react-dom": "19.1.7",
"tailwindcss": "^4.1.12",
"ts-morph": "^25.0.1",
"tsx": "^4.21.0",
"typescript": "^5",
"ultracite": "5.0.39"
},
"overrides": {
"@types/react": "19.1.11",
"@types/react-dom": "19.1.7",
"shiki": "^3.17.0"
}
}