package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "name": "storage-node-v2",
  3. "description": "Jostream 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.1",
  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. "multihashes": "^4.0.2",
  32. "node-cache": "^5.1.2",
  33. "openapi-editor": "^0.3.0",
  34. "read-chunk": "^3.2.0",
  35. "send": "^0.17.1",
  36. "tslib": "^1",
  37. "winston": "^3.3.3"
  38. },
  39. "devDependencies": {
  40. "@joystream/eslint-config": "^1.0.0",
  41. "@oclif/dev-cli": "^1",
  42. "@oclif/test": "^1",
  43. "@types/chai": "^4",
  44. "@types/mocha": "^5",
  45. "@types/node": "^10",
  46. "@types/swagger-ui-express": "^4.1.2",
  47. "@typescript-eslint/eslint-plugin": "3.8.0",
  48. "@typescript-eslint/parser": "3.8.0",
  49. "chai": "^4",
  50. "eslint": "^7.6.0",
  51. "eslint-config-oclif": "^3.1",
  52. "eslint-config-oclif-typescript": "^0.1",
  53. "globby": "^10",
  54. "mocha": "^5",
  55. "nyc": "^14",
  56. "prettier": "^2.3.0",
  57. "sinon": "^11.1.1",
  58. "swagger-ui-express": "^4.1.6",
  59. "ts-node": "^8.8.2",
  60. "typescript": "^3.3"
  61. },
  62. "engines": {
  63. "node": ">=8.0.0"
  64. },
  65. "files": [
  66. "/bin",
  67. "/lib",
  68. "/npm-shrinkwrap.json",
  69. "/oclif.manifest.json"
  70. ],
  71. "homepage": "https://github.com/Joystream/joystream",
  72. "keywords": [
  73. "joystream",
  74. "storage-node"
  75. ],
  76. "license": "GPL-3.0-only",
  77. "main": "lib/index.js",
  78. "oclif": {
  79. "commands": "./lib/commands",
  80. "bin": "storage-node",
  81. "plugins": [
  82. "@oclif/plugin-help"
  83. ],
  84. "topics": {
  85. "wg": {
  86. "description": "Storage working group commands."
  87. },
  88. "wg:leader": {
  89. "description": "Storage working group leader commands."
  90. }
  91. }
  92. },
  93. "repository": {
  94. "type": "git",
  95. "url": "https://github.com/Joystream/joystream",
  96. "directory": "storage-node-v2"
  97. },
  98. "scripts": {
  99. "postpack": "rm -f oclif.manifest.json",
  100. "posttest": "yarn lint",
  101. "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
  102. "test": "mocha --forbid-only \"test/**/*.test.ts\"",
  103. "version": "oclif-dev readme && git add README.md",
  104. "build": "tsc --build tsconfig.json",
  105. "format": "prettier ./src --write",
  106. "lint": "eslint ./src --ext .ts",
  107. "api:edit": "openapi-editor --file ./src/api-spec/openapi.yaml --port 10021"
  108. },
  109. "types": "lib/index.d.ts"
  110. }