rebours/nextjs/package.json
ordinarthur bf5bf977e9
All checks were successful
Build & Deploy to K3s / build-and-deploy (push) Successful in 4m13s
feat: replace Astro + Sanity + Fastify with Next.js + Payload CMS
Single Next.js 15 app now serves frontend SSR, admin CMS, and Stripe API.
Replaces the Sanity quota-limited headless CMS with self-hosted Payload 3.0
on Postgres, removing the split-service topology (ssr/api/proxy → web).

- nextjs/: Next.js 15 app with Payload 3.0, Postgres adapter, Stripe plugin
- k8s/: new single-pod deployment + Postgres StatefulSet + PVCs (media, db)
- .gitea/workflows/deploy.yml: single-image build, tears down legacy pods

New Gitea secrets required: PAYLOAD_SECRET, POSTGRES_PASSWORD.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-21 10:28:29 +02:00

45 lines
1.1 KiB
JSON

{
"name": "rebours",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"payload": "payload",
"generate:types": "payload generate:types",
"seed": "node --experimental-vm-modules --loader ts-node/esm scripts/seed.ts"
},
"dependencies": {
"@payloadcms/db-postgres": "^3.0.0",
"@payloadcms/live-preview-react": "^3.0.0",
"@payloadcms/next": "^3.0.0",
"@payloadcms/plugin-stripe": "^3.0.0",
"@payloadcms/richtext-lexical": "^3.0.0",
"@payloadcms/ui": "^3.0.0",
"cross-env": "^7.0.3",
"graphql": "^16.8.1",
"gsap": "^3.14.2",
"next": "^15.0.0",
"payload": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "0.33.5",
"stripe": "^10.17.0"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.16.0",
"eslint-config-next": "^15.0.0",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=20"
}
}