Initial MUH app implementation

This commit is contained in:
2026-03-12 11:43:27 +01:00
commit fb8e3c8ef6
69 changed files with 8387 additions and 0 deletions

25
frontend/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "muh-frontend",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.23.1"
},
"devDependencies": {
"@types/node": "^25.4.0",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@types/scheduler": "^0.26.0",
"@vitejs/plugin-react": "4.2.1",
"typescript": "5.4.5",
"vite": "5.2.10"
}
}