package.json 967 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "hawkband-wled-client",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev",
  7. "compile": "next build",
  8. "copy": "cp -rf public .next/standalone/. && cp -rf .next/static .next/standalone/. && cp -rf data .next/standalone/.",
  9. "relocate": "rm -rf build && mv .next/standalone build",
  10. "standalone": "yarn compile && yarn copy && yarn relocate",
  11. "build": "next build",
  12. "start": "NODE_ENV=production next start -p 80",
  13. "start:dev": "next start",
  14. "lint": "next lint"
  15. },
  16. "dependencies": {
  17. "bufferutil": "^4.0.7",
  18. "encoding": "^0.1.13",
  19. "eslint": "8.49.0",
  20. "eslint-config-next": "13.4.19",
  21. "lodash": "^4.17.21",
  22. "next": "13.4.19",
  23. "react": "18.2.0",
  24. "react-dom": "18.2.0",
  25. "styled-components": "^6.0.8",
  26. "swr": "^2.2.4",
  27. "tiny-ui": "^0.0.95",
  28. "utf-8-validate": "^6.0.3",
  29. "wled-client": "^0.22.1"
  30. },
  31. "devDependencies": {
  32. "sass": "^1.67.0"
  33. }
  34. }