package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "anchor-tests",
  3. "private": true,
  4. "scripts": {
  5. "lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
  6. "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
  7. },
  8. "workspaces": [
  9. "anchor-cli-idl",
  10. "cashiers-check",
  11. "cfo",
  12. "chat",
  13. "composite",
  14. "custom-coder",
  15. "errors",
  16. "escrow",
  17. "events",
  18. "floats",
  19. "ido-pool",
  20. "interface",
  21. "lockup",
  22. "misc",
  23. "multisig",
  24. "permissioned-markets",
  25. "pda-derivation",
  26. "relations-derivation",
  27. "pyth",
  28. "realloc",
  29. "spl/token-proxy",
  30. "swap",
  31. "system-accounts",
  32. "sysvars",
  33. "tictactoe",
  34. "typescript",
  35. "validator-clone",
  36. "zero-copy",
  37. "declare-id",
  38. "cpi-returns",
  39. "multiple-suites",
  40. "bpf-upgradeable-state"
  41. ],
  42. "dependencies": {
  43. "@project-serum/anchor": "file:../ts/packages/anchor",
  44. "@project-serum/common": "^0.0.1-beta.3",
  45. "@project-serum/serum": "^0.13.60",
  46. "@solana/spl-token": "^0.1.8",
  47. "@solana/web3.js": "^1.64.0"
  48. },
  49. "devDependencies": {
  50. "@types/chai": "^4.3.0",
  51. "@types/mocha": "^9.1.0",
  52. "@types/node": "^14.14.37",
  53. "chai": "^4.3.4",
  54. "mocha": "^10.0.0",
  55. "prettier": "^2.5.1",
  56. "ts-mocha": "^10.0.0",
  57. "tsc": "^2.0.4",
  58. "typescript": "^4.4.4"
  59. }
  60. }