package.json 935 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "webui",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev",
  7. "build": "next build",
  8. "build-static": "next build && npm run copy-to-build",
  9. "copy-to-build": "cp -r out/* ../build/webui/",
  10. "start": "next start",
  11. "lint": "eslint . --ext .ts,.tsx,.js,.jsx"
  12. },
  13. "dependencies": {
  14. "@radix-ui/react-select": "^2.2.6",
  15. "@radix-ui/react-tabs": "^1.1.13",
  16. "class-variance-authority": "^0.7.1",
  17. "clsx": "^2.1.1",
  18. "lucide-react": "^0.548.0",
  19. "next": "16.0.0",
  20. "next-themes": "^0.4.6",
  21. "react": "19.2.0",
  22. "react-dom": "19.2.0",
  23. "react-syntax-highlighter": "^15.6.1",
  24. "sonner": "^1.5.0"
  25. },
  26. "devDependencies": {
  27. "@tailwindcss/postcss": "^4",
  28. "@types/node": "^20",
  29. "@types/react": "^19",
  30. "@types/react-dom": "^19",
  31. "eslint": "^9",
  32. "eslint-config-next": "16.0.0",
  33. "tailwindcss": "^4",
  34. "typescript": "^5"
  35. }
  36. }