package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 . --max-warnings 0",
  12. "test:format": "prettier --check .",
  13. "test:lint": "eslint . --max-warnings 0",
  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. "@pythnetwork/component-library": "workspace:*",
  29. "bcp-47": "catalog:",
  30. "next-themes": "catalog:"
  31. },
  32. "devDependencies": {
  33. "@cprussin/eslint-config": "catalog:",
  34. "@cprussin/jest-config": "catalog:",
  35. "@cprussin/prettier-config": "catalog:",
  36. "@cprussin/tsconfig": "catalog:",
  37. "@types/jest": "catalog:",
  38. "@types/react": "catalog:",
  39. "@types/react-dom": "catalog:",
  40. "eslint": "catalog:",
  41. "jest": "catalog:",
  42. "next": "catalog:",
  43. "prettier": "catalog:",
  44. "react": "catalog:",
  45. "react-aria": "catalog:",
  46. "react-dom": "catalog:",
  47. "typescript": "catalog:"
  48. }
  49. }