package.json 559 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "react-again-tutorial",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "preview": "vite preview"
  10. },
  11. "dependencies": {
  12. "@emotion/react": "^11.10.8",
  13. "@emotion/styled": "^11.10.8",
  14. "@mui/material": "^5.12.3",
  15. "react": "^18.2.0",
  16. "react-dom": "^18.2.0"
  17. },
  18. "devDependencies": {
  19. "@types/react": "^18.2.5",
  20. "@types/react-dom": "^18.2.4",
  21. "@vitejs/plugin-react": "^4.0.0",
  22. "typescript": "^5.0.4",
  23. "vite": "^4.3.5"
  24. }
  25. }