mirror of
https://github.com/complexcaresolutions/frontend.porwoll.de.git
synced 2026-03-17 15:13:42 +00:00
- Next.js 16 + Tailwind CSS 4 project setup - Add @c2s/payload-contracts for shared API client (tenant: porwoll, ID: 1) - Create src/lib/cms.ts and src/lib/api.ts with CMS integration - Create block renderer with 15 placeholder blocks - Create dynamic [slug] page routing with CMS pages - Layout with CMS site settings integration - transpilePackages configured for TypeScript source imports Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
622 B
JSON
27 lines
622 B
JSON
{
|
|
"name": "frontend.porwoll.de",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@c2s/payload-contracts": "github:complexcaresolutions/payload-contracts",
|
|
"next": "16.0.10",
|
|
"react": "19.2.1",
|
|
"react-dom": "19.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.10",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|