package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "private": true,
  3. "name": "joystream",
  4. "version": "1.0.0",
  5. "license": "GPL-3.0-only",
  6. "scripts": {
  7. "postinstall": "./build-packages.sh",
  8. "build-joystream-cli": "yarn workspace @joystream/cli build",
  9. "build": "./build.sh",
  10. "start": "./start.sh",
  11. "cargo-checks": "devops/git-hooks/pre-commit && devops/git-hooks/pre-push",
  12. "cargo-build": "scripts/cargo-build.sh"
  13. },
  14. "workspaces": [
  15. "tests/integration-tests",
  16. "cli",
  17. "types",
  18. "storage-node",
  19. "storage-node/packages/*",
  20. "devops/eslint-config",
  21. "devops/prettier-config",
  22. "pioneer",
  23. "pioneer/packages/*",
  24. "utils/api-scripts",
  25. "content-directory-schemas",
  26. "metadata-protobuf",
  27. "query-node",
  28. "query-node/mappings",
  29. "query-node/generated/*"
  30. ],
  31. "resolutions": {
  32. "@polkadot/api": "2.4.1",
  33. "@polkadot/api-derive": "2.4.1",
  34. "@polkadot/api-contract": "2.4.1",
  35. "@polkadot/keyring": "3.6.1",
  36. "@polkadot/networks": "3.6.1",
  37. "@polkadot/types": "2.4.1",
  38. "@polkadot/types-known": "2.4.1",
  39. "@polkadot/util": "3.6.1",
  40. "@polkadot/util-crypto": "3.6.1",
  41. "@polkadot/wasm-crypto": "1.4.1",
  42. "@polkadot/rpc-core": "2.4.1",
  43. "@polkadot/rpc-provider": "2.4.1",
  44. "@polkadot/metadata": "2.4.1",
  45. "babel-core": "^7.0.0-bridge.0",
  46. "typescript": "^3.9.7",
  47. "bn.js": "^5.1.2",
  48. "typeorm": "^0.2.31"
  49. },
  50. "devDependencies": {
  51. "eslint": "^7.6.0",
  52. "husky": "^4.2.5",
  53. "prettier": "2.2.1"
  54. },
  55. "husky": {
  56. "hooks": {
  57. "pre-commit": "devops/git-hooks/pre-commit",
  58. "pre-push": "devops/git-hooks/pre-push"
  59. }
  60. },
  61. "engines": {
  62. "node": ">=12.18.0",
  63. "yarn": "^1.22.0"
  64. },
  65. "volta": {
  66. "node": "12.18.2",
  67. "yarn": "1.22.4"
  68. }
  69. }