package.json 873 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "api-scripts",
  3. "private": true,
  4. "version": "0.1.0",
  5. "license": "GPL-3.0-only",
  6. "scripts": {
  7. "status": "ts-node src/status",
  8. "script": "ts-node src/script",
  9. "tsnode-strict": "node -r ts-node/register --unhandled-rejections=strict",
  10. "initialize-lead": "ts-node src/initialize-lead",
  11. "initialize-worker": "ts-node src/initialize-worker",
  12. "storage-dev-init": "./dev-init-storage.sh"
  13. },
  14. "dependencies": {
  15. "@joystream/types": "^0.18.3",
  16. "@polkadot/api": "5.9.1",
  17. "@polkadot/types": "5.9.1",
  18. "@polkadot/keyring": "7.3.1",
  19. "@polkadot/util": "7.3.1",
  20. "@polkadot/util-crypto": "7.3.1",
  21. "@types/bn.js": "^4.11.5",
  22. "bn.js": "^4.11.8"
  23. },
  24. "devDependencies": {
  25. "@polkadot/ts": "^0.4.8",
  26. "typescript": "^4.4.3",
  27. "ts-node": "^10.2.1"
  28. },
  29. "volta": {
  30. "extends": "../../package.json"
  31. }
  32. }