feat(cms): add thin Next.js shell for Payload admin panel

This commit is contained in:
2026-04-06 14:41:51 +02:00
parent 4bb30f6546
commit 683b05dbf3
9 changed files with 573 additions and 17 deletions

View File

@@ -4,16 +4,27 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "echo 'placeholder'",
"dev": "echo 'placeholder'",
"build": "next build",
"dev": "next dev --port 3001",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"generate:types": "payload generate:types"
},
"dependencies": {
"@repo/cms-core": "workspace:*"
"@payloadcms/next": "^3.14.0",
"@payloadcms/ui": "^3.14.0",
"@repo/cms-core": "workspace:*",
"next": "^15.3.0",
"payload": "^3.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*"
"@repo/typescript-config": "workspace:*",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
}
}