package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@joystream/storage-node-backend",
  3. "private": true,
  4. "version": "0.1.0",
  5. "description": "Storage management code for Joystream Storage Node",
  6. "author": "Joystream",
  7. "homepage": "https://github.com/Joystream/joystream",
  8. "bugs": {
  9. "url": "https://github.com/Joystream/joystream/issues"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/Joystream/joystream.git"
  14. },
  15. "license": "GPL-3.0-only",
  16. "contributors": [
  17. {
  18. "name": "Joystream",
  19. "url": "https://joystream.org"
  20. }
  21. ],
  22. "keywords": [
  23. "joystream",
  24. "storage",
  25. "node",
  26. "storage"
  27. ],
  28. "os": [
  29. "darwin",
  30. "linux"
  31. ],
  32. "engines": {
  33. "node": ">=14.0.0"
  34. },
  35. "volta": {
  36. "extends": "../../package.json"
  37. },
  38. "scripts": {
  39. "test": "mocha --exit 'test/**/*.js'",
  40. "lint": "eslint '**/*.js' --ignore-pattern 'test/**/*.js'",
  41. "checks": "yarn lint && prettier ./ --check && tsc --noEmit --pretty"
  42. },
  43. "devDependencies": {
  44. "chai": "^4.2.0",
  45. "chai-as-promised": "^7.1.1",
  46. "eslint": "^7.6.0",
  47. "mocha": "^5.2.0"
  48. },
  49. "dependencies": {
  50. "bluebird": "^3.5.5",
  51. "file-type": "^11.0.0",
  52. "ipfs-http-client": "^32.0.1",
  53. "temp": "^0.9.0"
  54. }
  55. }