mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
23 lines
789 B
JSON
23 lines
789 B
JSON
{
|
|
"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"
|
|
}
|
|
} |