package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@pythnetwork/staking",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "engines": {
  7. "node": "22"
  8. },
  9. "scripts": {
  10. "build": "next build",
  11. "fix:format": "prettier --write .",
  12. "fix:lint": "eslint --fix . --max-warnings 0",
  13. "pull:env": "[ $CI ] || VERCEL_ORG_ID=team_BKQrg3JJFLxZyTqpuYtIY0rj VERCEL_PROJECT_ID=prj_3TIYzlYYncZx7wRtfmzG2YUsNzKp vercel env pull",
  14. "start:dev": "next dev --port 3001",
  15. "start:prod": "next start --port 3001",
  16. "test:format": "prettier --check .",
  17. "test:lint": "eslint . --max-warnings 0",
  18. "test:types": "tsc",
  19. "test:unit": "jest --selectProjects unit"
  20. },
  21. "dependencies": {
  22. "@amplitude/analytics-browser": "^2.9.3",
  23. "@amplitude/plugin-autocapture-browser": "^0.9.0",
  24. "@bonfida/spl-name-service": "^3.0.0",
  25. "@heroicons/react": "^2.1.4",
  26. "@next/third-parties": "^14.2.5",
  27. "@pythnetwork/hermes-client": "workspace:*",
  28. "@pythnetwork/known-publishers": "workspace:*",
  29. "@pythnetwork/staking-sdk": "workspace:*",
  30. "@react-aria/toast": "3.0.0-beta.16",
  31. "@react-hookz/web": "^24.0.4",
  32. "@react-stately/toast": "3.0.0-beta.6",
  33. "@solana/wallet-adapter-base": "^0.9.23",
  34. "@solana/wallet-adapter-react": "^0.15.35",
  35. "@solana/wallet-adapter-react-ui": "^0.9.35",
  36. "@solana/wallet-adapter-wallets": "0.19.10",
  37. "@solana/web3.js": "1.92.3",
  38. "@vercel/functions": "^1.5.0",
  39. "bcp-47": "^2.1.0",
  40. "clsx": "^2.1.1",
  41. "dnum": "^2.13.1",
  42. "framer-motion": "catalog:",
  43. "ip-range-check": "^0.2.0",
  44. "next": "catalog:",
  45. "pino": "^9.3.2",
  46. "proxycheck-ts": "^0.0.11",
  47. "react": "catalog:",
  48. "react-aria": "catalog:",
  49. "react-aria-components": "catalog:",
  50. "react-dom": "catalog:",
  51. "recharts": "^2.13.3",
  52. "swr": "^2.2.5",
  53. "zod": "^3.23.8"
  54. },
  55. "devDependencies": {
  56. "@axe-core/react": "^4.9.1",
  57. "@cprussin/eslint-config": "catalog:",
  58. "@cprussin/jest-config": "catalog:",
  59. "@cprussin/prettier-config": "catalog:",
  60. "@cprussin/tsconfig": "catalog:",
  61. "@svgr/webpack": "^8.1.0",
  62. "@tailwindcss/forms": "^0.5.7",
  63. "@types/jest": "^29.5.12",
  64. "@types/node": "^22.0.0",
  65. "@types/react": "catalog:",
  66. "@types/react-dom": "catalog:",
  67. "autoprefixer": "^10.4.19",
  68. "eslint": "^9.8.0",
  69. "jest": "^29.7.0",
  70. "postcss": "^8.4.40",
  71. "prettier": "catalog:",
  72. "tailwindcss": "^3.4.7",
  73. "tailwindcss-animate": "^1.0.7",
  74. "tailwindcss-react-aria-components": "^1.1.5",
  75. "typescript": "^5.5.4",
  76. "vercel": "^35.2.2"
  77. }
  78. }