package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "private": true,
  3. "name": "storage-node",
  4. "version": "1.0.0",
  5. "engines": {
  6. "node": ">=14.0.0",
  7. "yarn": "^1.22.0"
  8. },
  9. "homepage": "https://github.com/Joystream/joystream/",
  10. "bugs": {
  11. "url": "https://github.com/Joystream/joystream/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/Joystream/joystream.git"
  16. },
  17. "license": "GPL-3.0-only",
  18. "contributors": [
  19. {
  20. "name": "Joystream",
  21. "url": "https://joystream.org"
  22. }
  23. ],
  24. "keywords": [
  25. "joystream",
  26. "storage",
  27. "node"
  28. ],
  29. "os": [
  30. "darwin",
  31. "linux"
  32. ],
  33. "scripts": {
  34. "test": "wsrun --serial test",
  35. "lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
  36. "build": "yarn workspace @joystream/storage-cli run build",
  37. "checks": "prettier . --check && yarn lint",
  38. "format": "prettier . --write"
  39. },
  40. "devDependencies": {
  41. "@types/chai": "^4.2.11",
  42. "@types/mocha": "^7.0.2",
  43. "eslint": "^7.6.0",
  44. "eslint-config-esnext": "^4.1.0",
  45. "eslint-config-prettier": "^6.11.0",
  46. "eslint-plugin-babel": "^5.3.1",
  47. "eslint-plugin-prettier": "^3.1.4",
  48. "prettier": "^2.0.5",
  49. "typescript": "^3.9.6",
  50. "wsrun": "^3.6.5"
  51. },
  52. "volta": {
  53. "extends": "../package.json"
  54. }
  55. }