changing repo structure

This commit is contained in:
2025-10-23 23:53:57 +02:00
parent 8d020a0dac
commit 809a838e27
12 changed files with 459 additions and 33 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "schichtenplaner-monorepo",
"private": true,
"workspaces": [
"frontend",
"backend",
"premium"
],
"scripts": {
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build:all": "npm run build:premium && npm run build:backend && npm run build:frontend",
"build:premium": "cd premium && npm run build",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"type-check": "npm run type-check:all",
"type-check:all": "cd premium && npx tsc --noEmit && cd ../backend && npx tsc --noEmit && cd ../frontend && npx tsc --noEmit",
"clean": "rm -rf premium/dist backend/dist frontend/dist"
},
"devDependencies": {
"typescript": "^5.3.3"
}
}