Initialize HemHub project foundation

This commit is contained in:
Urban Modig
2026-07-23 22:06:56 +02:00
commit 9957383e88
23 changed files with 2430 additions and 0 deletions

27
frontend/package.json Normal file
View File

@ -0,0 +1,27 @@
{
"name": "hemhub-frontend",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test": "vitest run"
},
"dependencies": {
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.4",
"jsdom": "29.1.1",
"typescript": "7.0.2",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"packageManager": "pnpm@11.17.0"
}