package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "joystream-testing",
  3. "version": "0.1.0",
  4. "license": "GPL-3.0-only",
  5. "scripts": {
  6. "build": "tsc --build tsconfig.json",
  7. "test": "tap --files ts-node/register src/constantinople/tests/proposals/*Test.ts",
  8. "test-migration": "tap --files src/rome/tests/romeRuntimeUpgradeTest.ts --files src/constantinople/tests/electingCouncilTest.ts",
  9. "lint": "eslint . --quiet --ext .ts",
  10. "checks": "yarn lint && tsc --noEmit --pretty && prettier . --check",
  11. "format": "prettier ./ --write "
  12. },
  13. "dependencies": {
  14. "@constantinople/types": "./types",
  15. "@polkadot/api": "^0.96.1",
  16. "@polkadot/keyring": "^1.7.0-beta.5",
  17. "@rome/types@npm:@joystream/types": "^0.7.0",
  18. "@types/bn.js": "^4.11.5",
  19. "bn.js": "^4.11.8",
  20. "dotenv": "^8.2.0",
  21. "fs": "^0.0.1-security",
  22. "uuid": "^7.0.3"
  23. },
  24. "devDependencies": {
  25. "@polkadot/ts": "^0.3.14",
  26. "@types/chai": "^4.2.11",
  27. "@types/tap": "^14.10.0",
  28. "@types/uuid": "^7.0.2",
  29. "chai": "^4.2.0",
  30. "prettier": "2.0.2",
  31. "tap": "^14.10.7",
  32. "ts-node": "^8.8.1",
  33. "typescript": "^3.8.3"
  34. }
  35. }