package.json 947 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "external-delegate-token-master",
  3. "version": "1.0.0",
  4. "license": "MIT",
  5. "scripts": {
  6. "test": "jest --detectOpenHandles --forceExit",
  7. "test:watch": "jest --watch",
  8. "lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
  9. "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
  10. "build": "anchor build"
  11. },
  12. "dependencies": {
  13. "@coral-xyz/anchor": "^0.29.0",
  14. "@solana/spl-token": "^0.3.9",
  15. "@solana/web3.js": "^1.90.0",
  16. "ethers": "^5.7.2"
  17. },
  18. "devDependencies": {
  19. "@babel/core": "^7.23.7",
  20. "@babel/preset-env": "^7.23.7",
  21. "@babel/preset-typescript": "^7.23.7",
  22. "@types/chai": "^4.3.0",
  23. "@types/jest": "^29.5.11",
  24. "@types/node": "^18.0.0",
  25. "babel-jest": "^29.7.0",
  26. "chai": "^4.3.4",
  27. "jest": "^29.7.0",
  28. "prettier": "^2.6.2",
  29. "solana-bankrun": "^0.2.0",
  30. "ts-jest": "^29.1.1",
  31. "typescript": "^4.9.5",
  32. "@testing-library/jest-dom": "^6.1.6"
  33. }
  34. }