package.json 1.5 KB

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