package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "cashiers-check",
  10. "cfo",
  11. "chat",
  12. "composite",
  13. "custom-coder",
  14. "errors",
  15. "escrow",
  16. "events",
  17. "floats",
  18. "ido-pool",
  19. "interface",
  20. "lockup",
  21. "misc",
  22. "multisig",
  23. "permissioned-markets",
  24. "pda-derivation",
  25. "pyth",
  26. "spl/token-proxy",
  27. "swap",
  28. "system-accounts",
  29. "sysvars",
  30. "tictactoe",
  31. "typescript",
  32. "validator-clone",
  33. "zero-copy",
  34. "declare-id",
  35. "cpi-returns",
  36. "multiple-suites",
  37. "bpf-upgradeable-state"
  38. ],
  39. "dependencies": {
  40. "@project-serum/anchor": "file:../ts",
  41. "@project-serum/common": "^0.0.1-beta.3",
  42. "@project-serum/serum": "^0.13.60",
  43. "@solana/spl-token": "^0.1.8"
  44. },
  45. "devDependencies": {
  46. "@types/node": "^14.14.37",
  47. "chai": "^4.3.4",
  48. "@types/chai": "^4.3.0",
  49. "@types/mocha": "^9.1.0",
  50. "mocha": "^9.1.3",
  51. "ts-mocha": "^8.0.0",
  52. "typescript": "^4.4.4",
  53. "prettier": "^2.5.1"
  54. }
  55. }