package.json 758 B

1234567891011121314151617181920212223
  1. {
  2. "scripts": {
  3. "test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/test.ts",
  4. "build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
  5. "build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
  6. "deploy": "solana program deploy ./program/target/so/program.so"
  7. },
  8. "dependencies": {
  9. "@solana/web3.js": "^1.47.3",
  10. "buffer-layout": "^1.2.2",
  11. "fs": "^0.0.1-security"
  12. },
  13. "devDependencies": {
  14. "@types/bn.js": "^5.1.0",
  15. "@types/chai": "^4.3.1",
  16. "@types/mocha": "^9.1.1",
  17. "chai": "^4.3.4",
  18. "mocha": "^9.0.3",
  19. "solana-bankrun": "^0.3.0",
  20. "ts-mocha": "^10.0.0",
  21. "typescript": "^4.3.5"
  22. }
  23. }