package.json 529 B

123456789101112131415161718192021222324
  1. {
  2. "name": "chatgpt-next-web",
  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. "@svgr/webpack": "^6.5.1",
  13. "@types/node": "18.14.6",
  14. "@types/react": "18.0.28",
  15. "@types/react-dom": "18.0.11",
  16. "eslint": "8.35.0",
  17. "eslint-config-next": "13.2.3",
  18. "next": "13.2.3",
  19. "openai": "^3.2.1",
  20. "react": "18.2.0",
  21. "react-dom": "18.2.0",
  22. "typescript": "4.9.5"
  23. }
  24. }