feat(FN-002): complete Step 2 — React Frontend App Skeleton

This commit is contained in:
Fusion
2026-05-14 01:23:01 +02:00
parent d74f77fd33
commit 79203d2f0f
16 changed files with 3175 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{
"name": "@headquarter/web",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"typecheck": "tsc -b --noEmit"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.4.0",
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"@types/node": "^22.0.0",
"typescript": "~5.7.0",
"typescript-eslint": "^8.29.0",
"vite": "^6.3.0",
"vitest": "^3.1.0"
}
}