package.json 594 B

123456789101112131415161718192021222324
  1. {
  2. "license": "ISC",
  3. "scripts": {
  4. "lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
  5. "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
  6. },
  7. "dependencies": {
  8. "@coral-xyz/anchor": "^0.30.0",
  9. "@solana/spl-token": "^0.4.9",
  10. "@solana/web3.js": "^1.95.2"
  11. },
  12. "devDependencies": {
  13. "@types/bn.js": "^5.1.0",
  14. "@types/chai": "^4.3.0",
  15. "@types/mocha": "^9.0.0",
  16. "anchor-bankrun": "^0.4.0",
  17. "chai": "^4.4.1",
  18. "mocha": "^9.0.3",
  19. "prettier": "^2.6.2",
  20. "solana-bankrun": "^0.3.0",
  21. "ts-mocha": "^10.0.0",
  22. "typescript": "^4.3.5"
  23. }
  24. }