package.json 592 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "hawkbd-framework",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev",
  7. "build": "next build",
  8. "start": "next start",
  9. "lint": "next lint"
  10. },
  11. "dependencies": {
  12. "@babel/core": "^7.18.5",
  13. "@emotion/css": "^11.9.0",
  14. "@emotion/react": "^11.9.3",
  15. "@emotion/server": "^11.4.0",
  16. "@emotion/styled": "^11.9.3",
  17. "@mui/material": "^5.8.4",
  18. "next": "12.1.6",
  19. "react": "18.1.0",
  20. "react-dom": "18.1.0",
  21. "swr": "^1.3.0"
  22. },
  23. "devDependencies": {
  24. "eslint": "8.17.0",
  25. "eslint-config-next": "12.1.6"
  26. }
  27. }