30 lines
683 B
JSON
Raw Normal View History

2026-06-02 15:05:01 +02:00
{
"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": {
2026-07-07 15:44:24 +02:00
"arangojs": "^9.2.0",
2026-06-02 15:05:01 +02:00
"bun-plugin-tailwind": "^0.1.2",
"clsx": "^2.1.1",
"framer-motion": "^12.42.2",
"lucide-react": "^1.23.0",
2026-07-07 15:44:24 +02:00
"memjs": "^1.3.2",
2026-06-02 15:05:01 +02:00
"react": "^19",
"react-dom": "^19",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
2026-07-07 15:44:24 +02:00
"@types/bun": "latest",
"@types/memjs": "^1.3.3"
2026-06-02 15:05:01 +02:00
}
}