package.json 776 B

1234567891011121314151617181920212223242526272829303132333435
  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. },
  9. "workspaces": [
  10. "tests/network-tests",
  11. "cli",
  12. "types",
  13. "pioneer",
  14. "pioneer/packages/*"
  15. ],
  16. "resolutions": {
  17. "@polkadot/api": "^0.96.1",
  18. "@polkadot/api-contract": "^0.96.1",
  19. "@polkadot/keyring": "^1.7.0-beta.5",
  20. "@polkadot/types": "^0.96.1",
  21. "@polkadot/util": "^1.7.0-beta.5",
  22. "@polkadot/util-crypto": "^1.7.0-beta.5",
  23. "babel-core": "^7.0.0-bridge.0",
  24. "typescript": "^3.7.2"
  25. },
  26. "devDependencies": {
  27. "husky": "^4.2.5"
  28. },
  29. "husky": {
  30. "hooks": {
  31. "pre-commit": "devops/git-hooks/pre-commit",
  32. "pre-push": "devops/git-hooks/pre-push"
  33. }
  34. }
  35. }