package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "migration-scripts",
  3. "description": "Joystream migration scripts",
  4. "version": "0.1.0",
  5. "author": "Joystream contributors",
  6. "bin": {
  7. "migration-scripts": "./bin/run"
  8. },
  9. "bugs": "https://github.com/Joystream/joystream/issues",
  10. "dependencies": {
  11. "@oclif/command": "^1",
  12. "@oclif/config": "^1",
  13. "@oclif/plugin-help": "^3.2.3",
  14. "tslib": "^1",
  15. "@joystream/types": "^0.18.3",
  16. "@polkadot/api": "5.9.1",
  17. "@polkadot/types": "5.9.1",
  18. "@polkadot/keyring": "7.3.1",
  19. "@polkadot/util": "7.3.1",
  20. "@polkadot/util-crypto": "7.3.1",
  21. "@apollo/client": "^3.2.5",
  22. "cross-fetch": "^3.1.4",
  23. "lodash": "^4.17.21",
  24. "url-join": "^4.0.1",
  25. "@types/url-join": "^4.0.1",
  26. "axios": "^0.24.0",
  27. "blake3": "^2.1.4",
  28. "multihashes": "^4.0.3",
  29. "moment": "^2.29.1",
  30. "sharp": "^0.29.2",
  31. "@types/sharp": "^0.29.2",
  32. "form-data": "^4.0.0",
  33. "node-cleanup": "^2.1.2",
  34. "@types/node-cleanup": "^2.1.2",
  35. "winston": "^3.3.3",
  36. "fast-safe-stringify": "^2.1.1"
  37. },
  38. "devDependencies": {
  39. "@graphql-codegen/cli": "^1.21.4",
  40. "@graphql-codegen/import-types-preset": "^1.18.1",
  41. "@graphql-codegen/typescript": "^1.22.0",
  42. "@graphql-codegen/typescript-document-nodes": "^1.17.11",
  43. "@graphql-codegen/typescript-operations": "^1.17.16",
  44. "@oclif/dev-cli": "^1",
  45. "@types/node": "^14",
  46. "globby": "^10",
  47. "ts-node": "^8",
  48. "typescript": "^3.3"
  49. },
  50. "engines": {
  51. "node": ">=14.0.0",
  52. "yarn": "^1.22.0"
  53. },
  54. "volta": {
  55. "node": "14.16.1",
  56. "yarn": "1.22.15"
  57. },
  58. "files": [
  59. "/bin",
  60. "/lib",
  61. "/npm-shrinkwrap.json",
  62. "/oclif.manifest.json"
  63. ],
  64. "homepage": "https://github.com/Joystream/joystream",
  65. "keywords": [
  66. "oclif"
  67. ],
  68. "license": "GPL-3.0-only",
  69. "main": "lib/index.js",
  70. "oclif": {
  71. "commands": "./lib/commands",
  72. "bin": "migration-scripts",
  73. "plugins": [
  74. "@oclif/plugin-help"
  75. ],
  76. "topics": {
  77. "sumer-giza": {
  78. "description": "Sumer-to-Giza migration scripts"
  79. }
  80. }
  81. },
  82. "repository": "Joystream/joystream",
  83. "scripts": {
  84. "postpack": "rm -f oclif.manifest.json",
  85. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  86. "test": "echo NO TESTS",
  87. "version": "oclif-dev readme && git add README.md",
  88. "build": "tsc --build tsconfig.json",
  89. "lint": "eslint ./src --ext .ts",
  90. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  91. "format": "prettier ./ --write",
  92. "sumer-giza:generate:types:graphql": "yarn graphql-codegen -c ./src/sumer-giza/sumer-query-node/codegen.yml",
  93. "giza-olympia:generate:types:graphql": "yarn graphql-codegen -c ./src/giza-olympia/giza-query-node/codegen.yml"
  94. },
  95. "types": "lib/index.d.ts"
  96. }