package.json 981 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. "devops/eslint-config"
  19. ],
  20. "resolutions": {
  21. "@polkadot/api": "^0.96.1",
  22. "@polkadot/api-contract": "^0.96.1",
  23. "@polkadot/keyring": "^1.7.0-beta.5",
  24. "@polkadot/types": "^0.96.1",
  25. "@polkadot/util": "^1.7.0-beta.5",
  26. "@polkadot/util-crypto": "^1.7.0-beta.5",
  27. "babel-core": "^7.0.0-bridge.0",
  28. "typescript": "^3.7.2"
  29. },
  30. "devDependencies": {
  31. "husky": "^4.2.5"
  32. },
  33. "husky": {
  34. "hooks": {
  35. "pre-commit": "devops/git-hooks/pre-commit",
  36. "pre-push": "devops/git-hooks/pre-push"
  37. }
  38. }
  39. }