- Install @biomejs/biome as devDependency at root - Configure biome.json with 2-space indent, double quotes, Tailwind CSS support - Add lint/lint:fix/format/format:fix scripts to root and app package.json - Fix noNonNullAssertion: env vars extracted to variables with suppression, <div role=button> replaced with <button> - Fix noUnusedVariables: remove unused destructured vars - Fix useIterableCallbackReturn: arrow functions with block body - Fix noExplicitAny: recharts Tooltip formatters - Fix noLabelWithoutControl: add htmlFor+id or use <span> for non-input labels - Fix noStaticElementInteractions/useKeyWithClickEvents: role+keyboard events for overlays - Fix noArrayIndexKey: use error string as key - Fix CSS parse: enable tailwindDirectives parser - Normalize formatting across 80 files with biome check --write
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "@personal-admin/frontend",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"typecheck": "tsc --noEmit",
|
|
"preview": "vite preview",
|
|
"lint": "biome check src/",
|
|
"lint:fix": "biome check --write src/"
|
|
},
|
|
"dependencies": {
|
|
"better-auth": "^1.6.11",
|
|
"@hookform/resolvers": "^5.4.0",
|
|
"@personal-admin/common": "workspace:*",
|
|
"@tailwindcss/vite": "^4.3.0",
|
|
"@tanstack/react-query": "^5.100.11",
|
|
"@tanstack/react-query-devtools": "^5.100.11",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.3.0",
|
|
"lucide-react": "^1.16.0",
|
|
"radix-ui": "^1.4.3",
|
|
"react": "^19.1.0",
|
|
"react-day-picker": "^10.0.1",
|
|
"react-dom": "^19.1.0",
|
|
"react-hook-form": "^7.76.1",
|
|
"recharts": "^3.8.1",
|
|
"shadcn": "^4.7.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"tailwindcss": "^4.3.0",
|
|
"tw-animate-css": "^1.4.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tanstack/react-router": "^1.170.4",
|
|
"@tanstack/router-plugin": "^1.168.6",
|
|
"@types/node": "^25.9.1",
|
|
"@types/react": "^19.1.0",
|
|
"@types/react-dom": "^19.1.0",
|
|
"@vitejs/plugin-react": "^4.4.0",
|
|
"typescript": "^5.8.0",
|
|
"vite": "^6.3.0"
|
|
}
|
|
}
|