-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.11 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
{
"name": "electrobun-shadcn",
"version": "0.0.1",
"description": "Electrobun app with React, Tailwind CSS + Shadcn-ui, and Vite HMR",
"scripts": {
"start": "vite build && electrobun dev",
"dev": "electrobun dev --watch",
"dev:hmr": "concurrently \"bun run hmr\" \"bun run start\"",
"hmr": "vite --port 5173",
"build": "vite build && electrobun build",
"build:canary": "vite build && electrobun build --env=canary",
"build:stable": "vite build && electrobun build --env=stable",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"ci": "concurrently \"bun run lint --fix\" \"bun run fmt\""
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@fontsource-variable/figtree": "^5.2.10",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@tabler/icons-react": "^3.40.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.166.3",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"electrobun": "1.15.1",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.577.0",
"marked": "^17.0.4",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19",
"react-day-picker": "^9.14.0",
"react-dom": "^19",
"react-resizable-panels": "^4.7.2",
"recharts": "2.15.4",
"shadcn": "^4.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/router-devtools": "^1.166.3",
"@tanstack/router-plugin": "^1.166.3",
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}