package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-account",
  10. "anchor-cli-idl",
  11. "bench",
  12. "cashiers-check",
  13. "cfo",
  14. "chat",
  15. "composite",
  16. "custom-coder",
  17. "errors",
  18. "escrow",
  19. "events",
  20. "floats",
  21. "idl-build",
  22. "ido-pool",
  23. "interface",
  24. "lockup",
  25. "misc",
  26. "multisig",
  27. "optional",
  28. "permissioned-markets",
  29. "pda-derivation",
  30. "relations-derivation",
  31. "pyth",
  32. "realloc",
  33. "spl/token-proxy",
  34. "spl/token-wrapper",
  35. "swap",
  36. "system-accounts",
  37. "sysvars",
  38. "tictactoe",
  39. "typescript",
  40. "validator-clone",
  41. "zero-copy",
  42. "declare-id",
  43. "cpi-returns",
  44. "multiple-suites",
  45. "multiple-suites-run-single",
  46. "bpf-upgradeable-state"
  47. ],
  48. "dependencies": {
  49. "@project-serum/common": "^0.0.1-beta.3",
  50. "@project-serum/serum": "^0.13.60",
  51. "@solana/spl-token": "^0.1.8",
  52. "@solana/web3.js": "^1.68.0"
  53. },
  54. "devDependencies": {
  55. "@types/bn.js": "^5.1.1",
  56. "@types/chai": "^4.3.0",
  57. "@types/mocha": "^9.1.0",
  58. "@types/node": "^14.14.37",
  59. "chai": "^4.3.4",
  60. "mocha": "9.2.2",
  61. "prettier": "^2.5.1",
  62. "ts-mocha": "^10.0.0",
  63. "tsc": "^2.0.4",
  64. "typescript": "^4.4.4"
  65. }
  66. }