-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "src/index.tsx",
"module": "src/index.tsx",
"scripts": {
"dev": "bun --hot src/index.tsx",
"start": "NODE_ENV=production bun src/index.tsx",
"build": "bun run build.ts"
},
"dependencies": {
"@hookform/resolvers": "^4.1.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@theme-toggles/react": "^4.1.0",
"@type-challenges/utils": "^0.1.1",
"bun-plugin-tailwind": "^0.0.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"elysia": "^1.3.5",
"group-sub": "^1.0.0",
"lucide-react": "^0.475.0",
"react": "^19",
"react-dom": "^19",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.54.2",
"react-spinners": "^0.17.0",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.6",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/requirejs": "^2.1.37",
"prettier": "^3.6.2"
}
}