package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "private": true,
  3. "name": "{{name}}",
  4. "description": "{{description}}",
  5. "version": "0.0.0",
  6. "type": "module",
  7. "engines": {
  8. "node": ">=22.14.0"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/pyth-network/pyth-crosschain",
  13. "directory": "{{relativeFolder}}"
  14. },
  15. "scripts": {
  16. "build:vercel": "next build",
  17. "fix:format": "prettier --write .",
  18. "fix:lint:eslint": "eslint --fix .",
  19. "fix:lint:stylelint": "stylelint --fix 'src/**/*.scss'",
  20. "pull:env": "echo 'once {{name}} has been setup in the Vercel UI, you can replace this script with the contents in the pull:env:placeholder, below, as well as the VERCEL_PROJECT_ID variable value'",
  21. "pull:env:placeholder": "[ $CI ] || VERCEL_ORG_ID=team_BKQrg3JJFLxZyTqpuYtIY0rj VERCEL_PROJECT_ID=TODO_FILL_ME_IN vercel env pull",
  22. "start:dev": "next dev --port {{serverPort}}",
  23. "start:prod": "next start --port {{serverPort}}",
  24. "test:format": "prettier --check .",
  25. "test:lint:eslint": "eslint . --max-warnings 0",
  26. "test:lint:stylelint": "stylelint 'src/**/*.scss' --max-warnings 0",
  27. "test:types": "tsc",
  28. "test:unit": "jest"
  29. },
  30. "devDependencies": {
  31. "@axe-core/react": "catalog:",
  32. "@cprussin/eslint-config": "catalog:",
  33. "@cprussin/prettier-config": "catalog:",
  34. "@cprussin/tsconfig": "catalog:",
  35. "@pythnetwork/jest-config": "workspace:",
  36. "@types/jest": "catalog:",
  37. "@types/node": "catalog:",
  38. "@types/react": "catalog:",
  39. "@types/react-dom": "catalog:",
  40. "autoprefixer": "catalog:",
  41. "eslint": "catalog:",
  42. "jest": "catalog:",
  43. "postcss": "catalog:",
  44. "prettier": "catalog:",
  45. "vercel": "catalog:"
  46. },
  47. "dependencies": {
  48. "@next/third-parties": "catalog:",
  49. "@pythnetwork/component-library": "workspace:*",
  50. "@pythnetwork/react-hooks": "workspace:*",
  51. "@react-hookz/web": "catalog:",
  52. "clsx": "catalog:",
  53. "framer-motion": "catalog:",
  54. "next": "catalog:",
  55. "nuqs": "catalog:",
  56. "pino": "catalog:",
  57. "react": "catalog:",
  58. "react-aria": "catalog:",
  59. "react-aria-components": "catalog:",
  60. "react-dom": "catalog:",
  61. "swr": "catalog:",
  62. "zod": "catalog:"
  63. }
  64. }