package.json 1.5 KB

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