package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "private": true,
  3. "name": "joystream",
  4. "version": "1.0.0",
  5. "license": "GPL-3.0-only",
  6. "scripts": {
  7. "build": "./build-npm-packages.sh && ./build-docker-images.sh",
  8. "build:packages": "./build-npm-packages.sh",
  9. "build:docker": "./build-docker-images.sh",
  10. "setup": "./setup.sh",
  11. "start": "./start.sh",
  12. "cargo-checks": "devops/git-hooks/pre-commit && devops/git-hooks/pre-push",
  13. "cargo-build": "scripts/cargo-build.sh",
  14. "update-chain-metadata": "scripts/fetch-chain-metadata.sh > chain-metadata.json",
  15. "verify-chain-metadata": "scripts/verify-chain-metadata.sh"
  16. },
  17. "workspaces": [
  18. "tests/network-tests",
  19. "cli",
  20. "types",
  21. "storage-node-v2",
  22. "storage-node",
  23. "distributor-node",
  24. "storage-node/packages/*",
  25. "devops/eslint-config",
  26. "devops/prettier-config",
  27. "pioneer",
  28. "pioneer/packages/*",
  29. "utils/api-scripts",
  30. "query-node",
  31. "query-node/mappings",
  32. "query-node/generated/graphql-server",
  33. "metadata-protobuf"
  34. ],
  35. "resolutions": {
  36. "@polkadot/api": "5.9.1",
  37. "@polkadot/api-contract": "5.9.1",
  38. "@polkadot/keyring": "7.3.1",
  39. "@polkadot/types": "5.9.1",
  40. "@polkadot/types-known": "5.9.1",
  41. "@polkadot/util": "7.3.1",
  42. "@polkadot/util-crypto": "7.3.1",
  43. "@polkadot/api-derive": "5.9.1",
  44. "@polkadot/rpc-core": "5.9.1",
  45. "@polkadot/rpc-provider": "5.9.1",
  46. "@polkadot/x-global": "7.3.1",
  47. "@polkadot/networks": "7.3.1",
  48. "babel-core": "^7.0.0-bridge.0",
  49. "typescript": "^4.4.3",
  50. "bn.js": "4.12.0",
  51. "rxjs": "^7.4.0",
  52. "typeorm": "0.2.34",
  53. "pg": "^8.4.0",
  54. "chalk": "^4.0.0"
  55. },
  56. "devDependencies": {
  57. "eslint": "^7.25.0",
  58. "husky": "^4.2.5",
  59. "prettier": "^2.2.1"
  60. },
  61. "husky": {
  62. "hooks": {
  63. "pre-commit": "devops/git-hooks/pre-commit",
  64. "pre-push": "devops/git-hooks/pre-push"
  65. }
  66. },
  67. "engines": {
  68. "node": ">=14.0.0",
  69. "yarn": "^1.22.0"
  70. },
  71. "volta": {
  72. "node": "14.16.1",
  73. "yarn": "1.22.4"
  74. }
  75. }