20 lines
655 B
JSON
20 lines
655 B
JSON
{
|
|
"name": "web-cad-neu",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Web-basiertes 2D-CAD für Event-Bestuhlungspläne - Clean Rewrite",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev:frontend": "cd frontend && npm run dev",
|
|
"dev:backend": "cd backend && npm run dev",
|
|
"dev": "concurrently \"npm:dev:frontend\" \"npm:dev:backend\"",
|
|
"build:frontend": "cd frontend && npm run build",
|
|
"build:backend": "cd backend && npm run build",
|
|
"build": "npm run build:frontend && npm run build:backend",
|
|
"test": "cd frontend && npm test && cd ../backend && npm test"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.0.0"
|
|
}
|
|
}
|