package.json 877 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "attendance-management-system",
  3. "private": true,
  4. "version": "1.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
  10. "preview": "vite preview"
  11. },
  12. "dependencies": {
  13. "react": "^18.2.0",
  14. "react-dom": "^18.2.0",
  15. "react-router-dom": "^6.16.0",
  16. "axios": "^1.5.0",
  17. "antd": "^5.9.0",
  18. "@ant-design/icons": "^5.2.6"
  19. },
  20. "devDependencies": {
  21. "@types/react": "^18.2.15",
  22. "@types/react-dom": "^18.2.7",
  23. "@typescript-eslint/eslint-plugin": "^6.0.0",
  24. "@typescript-eslint/parser": "^6.0.0",
  25. "@vitejs/plugin-react": "^4.0.3",
  26. "eslint": "^8.45.0",
  27. "eslint-plugin-react-hooks": "^4.6.0",
  28. "eslint-plugin-react-refresh": "^0.4.3",
  29. "typescript": "^5.0.2",
  30. "vite": "^4.4.5"
  31. }
  32. }