package.json 1.8 KB

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