package.json 834 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "private": true,
  3. "name": "joystream",
  4. "license": "GPL-3.0-only",
  5. "scripts": {
  6. "test": "yarn && yarn workspaces run test",
  7. "test-migration": "yarn && yarn workspaces run test-migration",
  8. "postinstall": "yarn workspace @joystream/types build"
  9. },
  10. "workspaces": [
  11. "tests/network-tests",
  12. "cli",
  13. "types",
  14. "pioneer",
  15. "pioneer/packages/*"
  16. ],
  17. "resolutions": {
  18. "@polkadot/api": "^0.96.1",
  19. "@polkadot/api-contract": "^0.96.1",
  20. "@polkadot/keyring": "^1.7.0-beta.5",
  21. "@polkadot/types": "^0.96.1",
  22. "@polkadot/util": "^1.7.0-beta.5",
  23. "@polkadot/util-crypto": "^1.7.0-beta.5",
  24. "babel-core": "^7.0.0-bridge.0",
  25. "typescript": "^3.7.2"
  26. },
  27. "devDependencies": {
  28. "husky": "^4.2.5"
  29. },
  30. "husky": {
  31. "hooks": {
  32. "pre-commit": "devops/git-hooks/pre-commit",
  33. "pre-push": "devops/git-hooks/pre-push"
  34. }
  35. }
  36. }