package.json 911 B

1234567891011121314151617181920212223242526272829303132333435
  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. },
  25. "devDependencies": {
  26. "@tailwindcss/postcss": "^4",
  27. "@types/node": "^20",
  28. "@types/react": "^19",
  29. "@types/react-dom": "^19",
  30. "eslint": "^9",
  31. "eslint-config-next": "16.0.0",
  32. "tailwindcss": "^4",
  33. "typescript": "^5"
  34. }
  35. }