package.json 1023 B

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