package.json 848 B

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