Removes Directus 11 and replaces it with a lean, purpose-built backend: - packages/backend/: Fastify v5 + GraphQL Yoga v5 + Pothos (code-first) with Drizzle ORM, Redis sessions (session_token cookie), argon2 auth, Nodemailer, fluent-ffmpeg, and full gamification system ported from bundle - Frontend: @directus/sdk replaced by graphql-request v7; services.ts fully rewritten with identical signatures; directus.ts now re-exports from api.ts - Cookie renamed directus_session_token → session_token - Dev proxy target updated 8055 → 4000 - compose.yml: Directus service removed, backend service added (port 4000) - Dockerfile.backend: new multi-stage image with ffmpeg - Dockerfile: bundle build step and ffmpeg removed from frontend image - data-migration.ts: one-time script to migrate all Directus/sexy_ tables Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
906 B
JSON
34 lines
906 B
JSON
{
|
|
"name": "sexy.pivoine.art",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build:frontend": "git pull && pnpm install && pnpm --filter @sexy.pivoine.art/frontend build",
|
|
"build:backend": "git pull && pnpm install && pnpm --filter @sexy.pivoine.art/backend build",
|
|
"dev:data": "docker compose up -d postgres redis",
|
|
"dev:backend": "pnpm --filter @sexy.pivoine.art/backend dev",
|
|
"dev": "pnpm dev:data && pnpm dev:backend & pnpm --filter @sexy.pivoine.art/frontend dev"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Valknar",
|
|
"email": "valknar@pivoine.art"
|
|
},
|
|
"license": "MIT",
|
|
"packageManager": "pnpm@10.19.0",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"es5-ext",
|
|
"esbuild",
|
|
"svelte-preprocess",
|
|
"wasm-pack"
|
|
],
|
|
"ignoredBuiltDependencies": [
|
|
"@tailwindcss/oxide",
|
|
"node-sass"
|
|
]
|
|
}
|
|
}
|