feat: initial SchwarmbLog monorepo setup

- React + Vite + TanStack Router/Query frontend
- Hono + Prisma + MySQL backend
- Prisma schema mit allen Entitäten
- Docker + docker-compose Setup
- Tailwind mit Salm/Ozean Farbpalette
This commit is contained in:
Sebastian
2026-03-29 15:19:47 +00:00
commit ab76f207ae
28 changed files with 768 additions and 0 deletions

33
apps/web/package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "@schwarmblog/web",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src"
},
"dependencies": {
"@tanstack/react-query": "^5.45.0",
"@tanstack/react-router": "^1.42.0",
"@tanstack/router-devtools": "^1.42.0",
"@tanstack/react-query-devtools": "^5.45.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"lucide-react": "^0.395.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"@tanstack/router-plugin": "^1.42.0"
}
}