package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "pyth",
  27. "spl/token-proxy",
  28. "swap",
  29. "system-accounts",
  30. "sysvars",
  31. "tictactoe",
  32. "typescript",
  33. "validator-clone",
  34. "zero-copy",
  35. "declare-id",
  36. "cpi-returns",
  37. "multiple-suites",
  38. "bpf-upgradeable-state"
  39. ],
  40. "dependencies": {
  41. "@project-serum/anchor": "file:../ts",
  42. "@project-serum/common": "^0.0.1-beta.3",
  43. "@project-serum/serum": "^0.13.60",
  44. "@solana/spl-token": "^0.1.8"
  45. },
  46. "devDependencies": {
  47. "@types/node": "^14.14.37",
  48. "chai": "^4.3.4",
  49. "@types/chai": "^4.3.0",
  50. "@types/mocha": "^9.1.0",
  51. "mocha": "^9.1.3",
  52. "ts-mocha": "^8.0.0",
  53. "typescript": "^4.4.4",
  54. "prettier": "^2.5.1",
  55. "tsc": "^2.0.4"
  56. }
  57. }