package.json 1.2 KB

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