- TanStack Start (React 19, Tailwind 4) frontend recreated from Stitch design - PocketBase backend with schema migration + idempotent content seed - Single Docker image running both services (non-root, healthchecked) - deploy.sh to build & push to registry.tanshu.com - Ansible playbook (roles: app, caddy) deploying to www.greatbear.in with Caddy TLS entries for the site and the PocketBase admin
33 lines
845 B
JSON
33 lines
845 B
JSON
{
|
|
"name": "greatbear-app",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build && tsc --noEmit",
|
|
"preview": "vite preview",
|
|
"start": "node .output/server/index.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource-variable/inter": "^5.2.5",
|
|
"@fontsource-variable/playfair-display": "^5.2.5",
|
|
"@tanstack/react-router": "^1.170.32",
|
|
"@tanstack/react-start": "^1.168.49",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"@types/node": "^22.5.4",
|
|
"@types/react": "^19.0.8",
|
|
"@types/react-dom": "^19.0.3",
|
|
"@vitejs/plugin-react": "^6.0.1",
|
|
"nitro": "^3.0.260311-beta",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "^5.9.2",
|
|
"vite": "^8.0.14"
|
|
}
|
|
}
|