feat: initial commit web-cad-neu with docker-compose, frontend and backend

This commit is contained in:
2026-06-26 10:50:24 +02:00
commit 4ec76fe406
102 changed files with 25722 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"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"
}
}