-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.27 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
{
"name": "uiframe",
"version": "2.2.0",
"private": true,
"scripts": {
"dev": "next dev -p 5200",
"build": "next build",
"start": "next start",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check",
"check:fix": "biome check --write",
"generate:presets": "bun run tsconfig.scripts.json src/scripts/generate-theme-presets.ts",
"setup:theme": "bun scripts/setup-theme.js",
"generate:form": "bun scripts/generate-form.js"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@dnd-kit/abstract": "^0.5.0",
"@dnd-kit/helpers": "^0.5.0",
"@dnd-kit/react": "^0.5.0",
"@fingerprintjs/fingerprintjs": "^5.2.0",
"@fullcalendar/react": "^7.0.2",
"@hookform/resolvers": "^5.9.1",
"@shadcn/react": "^0.3.1",
"@tanstack/react-table": "^9.2.4",
"@vercel/analytics": "^2.0.1",
"axios": "^1.20.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3-geo": "^3.1.1",
"date-fns": "^4.4.0",
"embla-carousel-react": "^8.6.0",
"geist": "^1.7.2",
"input-otp": "^1.5.0",
"lucide-react": "^1.38.0",
"next": "^16.3.4",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.7",
"react": "^19.2.8",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.8",
"react-hook-form": "^7.87.0",
"react-resizable-panels": "^4.12.3",
"recharts": "^3.8.0",
"shadcn": "^4.19.1",
"simple-icons": "^16.29.0",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"temporal-polyfill": "^1.0.4",
"topojson-client": "^3.1.0",
"vaul": "^1.1.2",
"zod": "^4.5.4",
"zustand": "^5.0.15"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@tailwindcss/postcss": "^4.3.3",
"@types/d3-geo": "^3.1.1",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/topojson-client": "^3.1.5",
"babel-plugin-react-compiler": "^1.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"playwright": "^1.62.1",
"postcss": "^8.5.26",
"tailwindcss": "^4.1.5",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}