package.json 1.3 KB

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