feat: Implement API service for handling system, recipe, process, hardware, safety, and user management endpoints feat: Create Zustand store for managing system state and connection status feat: Define TypeScript types for system, recipe, process, hardware, safety, user, and API responses chore: Configure Vite for React development with TypeScript and Tailwind CSS feat: Implement CSV migration tools for importing legacy data into the new system
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "tempering-machine-frontend",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "React frontend for chocolate tempering machine control system",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"preview": "vite preview",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.26.0",
|
|
"axios": "^1.7.0",
|
|
"recharts": "^2.12.0",
|
|
"socket.io-client": "^4.7.0",
|
|
"lucide-react": "^0.427.0",
|
|
"react-hook-form": "^7.52.0",
|
|
"react-hot-toast": "^2.4.0",
|
|
"zustand": "^4.5.0",
|
|
"date-fns": "^3.6.0",
|
|
"@tanstack/react-query": "^5.51.0",
|
|
"clsx": "^2.1.0",
|
|
"tailwind-merge": "^2.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.66",
|
|
"@types/react-dom": "^18.2.22",
|
|
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
"@typescript-eslint/parser": "^7.2.0",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"autoprefixer": "^10.4.19",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.6",
|
|
"postcss": "^8.4.38",
|
|
"tailwindcss": "^3.4.4",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.2.0"
|
|
}
|
|
}
|