package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@pythnetwork/next-root",
  3. "version": "0.0.0",
  4. "private": true,
  5. "type": "module",
  6. "exports": {
  7. ".": "./src/index.tsx"
  8. },
  9. "scripts": {
  10. "fix:format": "prettier --write .",
  11. "fix:lint": "eslint --fix .",
  12. "test:format": "prettier --check .",
  13. "test:lint": "jest --selectProjects lint",
  14. "test:types": "tsc"
  15. },
  16. "peerDependencies": {
  17. "next": "catalog:",
  18. "react": "catalog:",
  19. "react-aria": "catalog:",
  20. "react-dom": "catalog:"
  21. },
  22. "dependencies": {
  23. "@amplitude/analytics-browser": "catalog:",
  24. "@amplitude/plugin-autocapture-browser": "catalog:",
  25. "@axe-core/react": "catalog:",
  26. "@next/third-parties": "catalog:",
  27. "@pythnetwork/app-logger": "workspace:*",
  28. "bcp-47": "catalog:",
  29. "next-themes": "catalog:"
  30. },
  31. "devDependencies": {
  32. "@cprussin/eslint-config": "catalog:",
  33. "@cprussin/jest-config": "catalog:",
  34. "@cprussin/prettier-config": "catalog:",
  35. "@cprussin/tsconfig": "catalog:",
  36. "@types/jest": "catalog:",
  37. "@types/react": "catalog:",
  38. "@types/react-dom": "catalog:",
  39. "eslint": "catalog:",
  40. "jest": "catalog:",
  41. "next": "catalog:",
  42. "prettier": "catalog:",
  43. "react": "catalog:",
  44. "react-aria": "catalog:",
  45. "react-dom": "catalog:",
  46. "typescript": "catalog:"
  47. }
  48. }