package.json 1.4 KB

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