package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.17.1",
  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. },
  36. "devDependencies": {
  37. "@graphql-codegen/cli": "^1.21.4",
  38. "@graphql-codegen/import-types-preset": "^1.18.1",
  39. "@graphql-codegen/typescript": "^1.22.0",
  40. "@graphql-codegen/typescript-document-nodes": "^1.17.11",
  41. "@graphql-codegen/typescript-operations": "^1.17.16",
  42. "@oclif/dev-cli": "^1",
  43. "@types/node": "^14",
  44. "globby": "^10",
  45. "ts-node": "^8",
  46. "typescript": "^3.3"
  47. },
  48. "engines": {
  49. "node": ">=14.0.0",
  50. "yarn": "^1.22.0"
  51. },
  52. "volta": {
  53. "node": "14.16.1",
  54. "yarn": "1.22.4"
  55. },
  56. "files": [
  57. "/bin",
  58. "/lib",
  59. "/npm-shrinkwrap.json",
  60. "/oclif.manifest.json"
  61. ],
  62. "homepage": "https://github.com/Joystream/joystream",
  63. "keywords": [
  64. "oclif"
  65. ],
  66. "license": "GPL-3.0-only",
  67. "main": "lib/index.js",
  68. "oclif": {
  69. "commands": "./lib/commands",
  70. "bin": "migration-scripts",
  71. "plugins": [
  72. "@oclif/plugin-help"
  73. ],
  74. "topics": {
  75. "sumer-giza": {
  76. "description": "Sumer-to-Giza migration scripts"
  77. }
  78. }
  79. },
  80. "repository": "Joystream/joystream",
  81. "scripts": {
  82. "postpack": "rm -f oclif.manifest.json",
  83. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  84. "test": "echo NO TESTS",
  85. "version": "oclif-dev readme && git add README.md",
  86. "build": "tsc --build tsconfig.json",
  87. "lint": "eslint ./src --ext .ts",
  88. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  89. "format": "prettier ./ --write",
  90. "generate:types:graphql": "yarn graphql-codegen -c ./src/sumer-giza/sumer-query-node/codegen.yml"
  91. },
  92. "types": "lib/index.d.ts"
  93. }