package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/nicaea/tests/proposals/*Test.ts --files ts-node/register src/nicaea/tests/workingGroup/*Test.ts -T",
  8. "test-migration-constantinople": "tap --files src/rome/tests/romeRuntimeUpgradeTest.ts --files src/constantinople/tests/electingCouncilTest.ts -T",
  9. "test-migration-nicaea": "tap --files src/constantinople/tests/proposals/updateRuntimeTest.ts --files src/nicaea/tests/electingCouncilTest.ts -T",
  10. "debug": "tap --files src/nicaea/tests/proposals/addWorkingGroupLeaderTest.ts -T",
  11. "lint": "tslint --project tsconfig.json",
  12. "prettier": "prettier --write ./src"
  13. },
  14. "dependencies": {
  15. "@constantinople/types@npm:@joystream/types": "^0.10.0",
  16. "@nicaea/types": "link:../../types",
  17. "@polkadot/api": "^0.96.1",
  18. "@polkadot/keyring": "^1.7.0-beta.5",
  19. "@rome/types@npm:@joystream/types": "^0.7.0",
  20. "@types/bn.js": "^4.11.5",
  21. "bn.js": "^4.11.8",
  22. "dotenv": "^8.2.0",
  23. "fs": "^0.0.1-security",
  24. "uuid": "^7.0.3"
  25. },
  26. "devDependencies": {
  27. "@polkadot/ts": "^0.3.14",
  28. "@types/chai": "^4.2.11",
  29. "@types/tap": "^14.10.0",
  30. "@types/uuid": "^7.0.2",
  31. "chai": "^4.2.0",
  32. "prettier": "2.0.2",
  33. "tap": "^14.10.7",
  34. "ts-node": "^8.8.1",
  35. "tslint": "^6.1.0",
  36. "typescript": "^3.8.3"
  37. }
  38. }