package.json 1.2 KB

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