package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "name": "storage-node-v2",
  3. "description": "Joystream storage subsystem.",
  4. "version": "0.1.0",
  5. "author": "Joystream contributors",
  6. "bin": {
  7. "storage-node": "./bin/run"
  8. },
  9. "bugs": "https://github.com/Joystream/joystream/issues",
  10. "dependencies": {
  11. "@joystream/types": "^0.17.0",
  12. "@oclif/command": "^1",
  13. "@oclif/config": "^1",
  14. "@oclif/plugin-help": "^3",
  15. "@polkadot/api": "4.2.1",
  16. "@types/base64url": "^2.0.0",
  17. "@types/express": "4.17.13",
  18. "@types/file-type": "^10.9.1",
  19. "@types/multer": "^1.4.5",
  20. "@types/node-cache": "^4.2.5",
  21. "@types/read-chunk": "^3.1.0",
  22. "@types/send": "^0.17.0",
  23. "@types/winston": "^2.4.4",
  24. "await-lock": "^2.1.0",
  25. "base64url": "^3.0.1",
  26. "blake3": "^2.1.4",
  27. "express": "4.17.1",
  28. "express-openapi-validator": "^4.12.4",
  29. "express-winston": "^4.1.0",
  30. "file-type": "^16.5.0",
  31. "lodash": "^4.17.21",
  32. "multihashes": "^4.0.2",
  33. "node-cache": "^5.1.2",
  34. "openapi-editor": "^0.3.0",
  35. "read-chunk": "^3.2.0",
  36. "send": "^0.17.1",
  37. "tslib": "^1",
  38. "winston": "^3.3.3"
  39. },
  40. "devDependencies": {
  41. "@joystream/eslint-config": "^1.0.0",
  42. "@oclif/dev-cli": "^1",
  43. "@oclif/test": "^1",
  44. "@types/chai": "^4",
  45. "@types/mocha": "^5",
  46. "@types/node": "^10",
  47. "@types/swagger-ui-express": "^4.1.2",
  48. "@typescript-eslint/eslint-plugin": "3.8.0",
  49. "@typescript-eslint/parser": "3.8.0",
  50. "chai": "^4",
  51. "eslint": "^7.6.0",
  52. "eslint-config-oclif": "^3.1",
  53. "eslint-config-oclif-typescript": "^0.1",
  54. "globby": "^10",
  55. "mocha": "^5",
  56. "nyc": "^14",
  57. "prettier": "^2.3.0",
  58. "sinon": "^11.1.1",
  59. "swagger-ui-express": "^4.1.6",
  60. "ts-node": "^8.8.2",
  61. "type-doc": "^0.1.41",
  62. "typescript": "^3.3"
  63. },
  64. "engines": {
  65. "node": ">=14.16.1"
  66. },
  67. "volta": {
  68. "node": "14.16.1",
  69. "yarn": "1.22.4"
  70. },
  71. "files": [
  72. "/bin",
  73. "/lib",
  74. "/npm-shrinkwrap.json",
  75. "/oclif.manifest.json"
  76. ],
  77. "homepage": "https://github.com/Joystream/joystream",
  78. "keywords": [
  79. "joystream",
  80. "storage-node"
  81. ],
  82. "license": "GPL-3.0-only",
  83. "main": "lib/index.js",
  84. "oclif": {
  85. "commands": "./lib/commands",
  86. "bin": "storage-node",
  87. "plugins": [
  88. "@oclif/plugin-help"
  89. ],
  90. "topics": {
  91. "wg": {
  92. "description": "Storage working group commands."
  93. },
  94. "wg:leader": {
  95. "description": "Storage working group leader commands."
  96. }
  97. }
  98. },
  99. "repository": {
  100. "type": "git",
  101. "url": "https://github.com/Joystream/joystream",
  102. "directory": "storage-node-v2"
  103. },
  104. "scripts": {
  105. "postpack": "rm -f oclif.manifest.json",
  106. "posttest": "yarn lint",
  107. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  108. "version": "oclif-dev readme && git add README.md",
  109. "build": "tsc --build tsconfig.json",
  110. "format": "prettier ./src --write",
  111. "lint": "eslint ./src --ext .ts",
  112. "api:edit": "openapi-editor --file ./src/api-spec/openapi.yaml --port 10021"
  113. },
  114. "types": "lib/index.d.ts"
  115. }