package.json 955 B

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