mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 06:55:45 +01:00
21 lines
622 B
JSON
21 lines
622 B
JSON
{
|
|
"name": "schichtenplaner-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"frontend",
|
|
"backend",
|
|
"premium"
|
|
],
|
|
"scripts": {
|
|
"docker:build": "docker build -t schichtplan-app .",
|
|
"docker:run": "docker run -p 3002:3002 schichtplan-app",
|
|
"build:all": "npm run build --workspace=backend && npm run build --workspace=frontend",
|
|
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:backend": "cd backend && npm run dev:single"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.3",
|
|
"concurrently": "9.2.1"
|
|
}
|
|
} |