mirror of
https://github.com/oven-sh/bun
synced 2026-02-12 11:59:00 +00:00
Co-authored-by: Zack Radisic <56137411+zackradisic@users.noreply.github.com> Co-authored-by: chloe caruso <git@paperclover.net>
36 lines
919 B
JSON
36 lines
919 B
JSON
{
|
|
"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",
|
|
"bun-plugin-tailwind": "^0.0.14",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.475.0",
|
|
"react": "^19",
|
|
"react-dom": "^19",
|
|
"react-hook-form": "^7.54.2",
|
|
"tailwind-merge": "^3.0.1",
|
|
"tailwindcss": "^4.0.6",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/bun": "latest"
|
|
}
|
|
}
|