- apps/web: Vite + React 19 + TanStack Router/Query + shadcn/ui - apps/api: Hono + Bun on :3001 with /api/health, /api/auth/*, /mcp stubs - apps/worker: Bun worker stub, DB connection, graceful SIGTERM - apps/web-legacy/: old Next.js code moved aside (preserved for T2-T8 reference) - Dockerfiles: api (Bun), worker (Bun), spa (multi-stage Caddy) - Caddyfile: serves dist + reverse-proxies /api/* + /mcp to api - docker-compose.yml: 4-service target (api, spa, db, worker) - packages/db/src/client.ts: shared Drizzle client for api + worker - db/client.ts: root-level alias for convenience Parent: t_e1cbd87d -> t_24c9c3fd (T0)
93 lines
2.9 KiB
JSON
93 lines
2.9 KiB
JSON
{
|
|
"name": "@project-e/web-legacy",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"test": "jest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@hookform/resolvers": "^5.4.0",
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"@project-e/db": "^0.1.0",
|
|
"@project-e/shared": "*",
|
|
"@radix-ui/react-accordion": "^1.2.16",
|
|
"@radix-ui/react-alert-dialog": "^1.1.19",
|
|
"@radix-ui/react-aspect-ratio": "^1.1.11",
|
|
"@radix-ui/react-avatar": "^1.2.2",
|
|
"@radix-ui/react-checkbox": "^1.3.7",
|
|
"@radix-ui/react-context-menu": "^2.3.3",
|
|
"@radix-ui/react-dialog": "^1.1.19",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.20",
|
|
"@radix-ui/react-hover-card": "^1.1.19",
|
|
"@radix-ui/react-label": "^2.1.11",
|
|
"@radix-ui/react-menubar": "^1.1.20",
|
|
"@radix-ui/react-navigation-menu": "^1.2.18",
|
|
"@radix-ui/react-popover": "^1.1.19",
|
|
"@radix-ui/react-progress": "^1.1.12",
|
|
"@radix-ui/react-radio-group": "^1.4.3",
|
|
"@radix-ui/react-scroll-area": "^1.2.14",
|
|
"@radix-ui/react-select": "^2.3.3",
|
|
"@radix-ui/react-separator": "^1.1.11",
|
|
"@radix-ui/react-slider": "^1.4.3",
|
|
"@radix-ui/react-slot": "^1.3.0",
|
|
"@radix-ui/react-switch": "^1.3.3",
|
|
"@radix-ui/react-tabs": "^1.1.17",
|
|
"@radix-ui/react-toast": "^1.2.19",
|
|
"@radix-ui/react-toggle": "^1.1.14",
|
|
"@radix-ui/react-toggle-group": "^1.1.15",
|
|
"@radix-ui/react-tooltip": "^1.2.12",
|
|
"@tiptap/extension-link": "^3.27.4",
|
|
"@tiptap/extension-placeholder": "^3.27.4",
|
|
"@tiptap/pm": "^3.27.4",
|
|
"@tiptap/react": "^3.27.4",
|
|
"@tiptap/starter-kit": "^3.27.4",
|
|
"@types/react-big-calendar": "^1.16.3",
|
|
"@types/react-grid-layout": "^1.3.6",
|
|
"bcryptjs": "^3.0.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"date-fns": "^4.4.0",
|
|
"drizzle-orm": "^0.45.2",
|
|
"lucide-react": "^1.24.0",
|
|
"next": "^15.3.0",
|
|
"next-auth": "^4.24.15",
|
|
"postgres": "^3.4.9",
|
|
"react": "^19.1.0",
|
|
"react-big-calendar": "^1.20.0",
|
|
"react-calendar-heatmap": "^1.10.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-force-graph-2d": "^1.29.1",
|
|
"react-grid-layout": "^2.2.3",
|
|
"react-hook-form": "^7.81.0",
|
|
"recharts": "^3.9.2",
|
|
"rrule": "^2.8.1",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.6.0",
|
|
"zod": "^4.4.3",
|
|
"zustand": "^5.0.14"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.3.2",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/node": "^22.19.0",
|
|
"@types/react": "^19.1.0",
|
|
"@types/react-dom": "^19.1.0",
|
|
"autoprefixer": "^10.5.2",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-next": "^15.5.22",
|
|
"postcss": "^8.4.31",
|
|
"tailwindcss": "^3.4.19",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|