- Dockerfiles: server (Bun, runs migrations then starts) and web (Vite build served by nginx with SPA fallback); .dockerignore - docker-compose.prod.yml (postgres + server + web) ready for Dokploy, with uploads/pgdata volumes and .env.production.example - README: deployment (Dokploy) + gitflow/versioning sections, Images mode, bots, i18n; CHANGELOG.md - bump packages to 0.1.0 Docker images built and validated end-to-end: server migrates + serves /health + /api/categories; web serves the SPA with VITE_SERVER_URL baked in. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint",
|
|
"format": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"typecheck": "tsc --noEmit",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@dicebear/core": "^10",
|
|
"@dicebear/styles": "^10",
|
|
"@icons-pack/react-simple-icons": "^13",
|
|
"@nerdware/shared": "workspace:*",
|
|
"@tanstack/react-query": "^5.101.0",
|
|
"@workspace/ui": "workspace:*",
|
|
"canvas-confetti": "^1.9.4",
|
|
"framer-motion": "^11",
|
|
"lucide-react": "^1.17.0",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"socket.io-client": "^4.8.1",
|
|
"wouter": "^3.7.1",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10",
|
|
"@tailwindcss/vite": "^4",
|
|
"@types/canvas-confetti": "^1.9.0",
|
|
"@types/node": "^24",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@vitejs/plugin-react": "^6",
|
|
"eslint": "^10",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
"globals": "^17",
|
|
"typescript": "~6",
|
|
"typescript-eslint": "^8",
|
|
"vite": "^8"
|
|
}
|
|
}
|