3deab5fdf3
- Create missing tsconfig.node.json for Vite config compilation - Create postcss.config.js for Tailwind CSS processing - Add test dependencies (vitest, testing-library, jsdom) - Remove missing /vite.svg favicon reference from index.html
37 lines
892 B
JSON
37 lines
892 B
JSON
{
|
|
"name": "backup-tool-frontend",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.21.0",
|
|
"@tanstack/react-query": "^5.17.0",
|
|
"axios": "^1.6.5",
|
|
"react-hook-form": "^7.49.0",
|
|
"recharts": "^2.10.0",
|
|
"lucide-react": "^0.303.0",
|
|
"clsx": "^2.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.43",
|
|
"@types/react-dom": "^18.2.17",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"autoprefixer": "^10.4.16",
|
|
"postcss": "^8.4.32",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.0.8",
|
|
"vitest": "^1.1.0",
|
|
"@testing-library/react": "^14.1.0",
|
|
"@testing-library/jest-dom": "^6.2.0",
|
|
"jsdom": "^23.0.0"
|
|
}
|
|
}
|