package.json 1.4 KB

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