package.json 1.4 KB

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