package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. "eslint-plugin-prettier": "^3.1.4"
  35. },
  36. "husky": {
  37. "hooks": {
  38. "pre-commit": "devops/git-hooks/pre-commit",
  39. "pre-push": "devops/git-hooks/pre-push"
  40. }
  41. }
  42. }