23 lines
502 B
JSON
23 lines
502 B
JSON
{
|
|
"name": "bun-react-template",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun --hot src/index.ts",
|
|
"start": "NODE_ENV=production bun src/index.ts",
|
|
"build": "bun run build.ts"
|
|
},
|
|
"dependencies": {
|
|
"bun-plugin-tailwind": "^0.1.2",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"tailwindcss": "^4.1.18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@types/bun": "^1.3.6"
|
|
}
|
|
}
|