package.json 904 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "own-react-experiments",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
  10. "preview": "vite preview"
  11. },
  12. "dependencies": {
  13. "@emotion/react": "^11.11.0",
  14. "@emotion/styled": "^11.11.0",
  15. "@mui/icons-material": "^5.11.16",
  16. "@mui/material": "^5.13.0",
  17. "react": "^18.2.0",
  18. "react-dom": "^18.2.0"
  19. },
  20. "devDependencies": {
  21. "@types/react": "^18.0.28",
  22. "@types/react-dom": "^18.0.11",
  23. "@typescript-eslint/eslint-plugin": "^5.57.1",
  24. "@typescript-eslint/parser": "^5.57.1",
  25. "@vitejs/plugin-react-swc": "^3.0.0",
  26. "eslint": "^8.38.0",
  27. "eslint-plugin-react-hooks": "^4.6.0",
  28. "eslint-plugin-react-refresh": "^0.3.4",
  29. "typescript": "^5.0.2",
  30. "vite": "^4.3.2"
  31. }
  32. }