package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@mastodon/streaming",
  3. "license": "AGPL-3.0-or-later",
  4. "packageManager": "yarn@4.0.2",
  5. "engines": {
  6. "node": ">=18"
  7. },
  8. "description": "Mastodon's Streaming Server",
  9. "private": true,
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/mastodon/mastodon.git"
  13. },
  14. "scripts": {
  15. "start": "node ./index.js",
  16. "typecheck": "tsc --noEmit"
  17. },
  18. "dependencies": {
  19. "cors": "^2.8.5",
  20. "dotenv": "^16.0.3",
  21. "express": "^4.18.2",
  22. "ioredis": "^5.3.2",
  23. "jsdom": "^24.0.0",
  24. "pg": "^8.5.0",
  25. "pg-connection-string": "^2.6.0",
  26. "pino": "^8.17.2",
  27. "pino-http": "^9.0.0",
  28. "prom-client": "^15.0.0",
  29. "uuid": "^9.0.0",
  30. "ws": "^8.12.1"
  31. },
  32. "devDependencies": {
  33. "@types/cors": "^2.8.16",
  34. "@types/express": "^4.17.17",
  35. "@types/pg": "^8.6.6",
  36. "@types/uuid": "^9.0.0",
  37. "@types/ws": "^8.5.9",
  38. "eslint-define-config": "^2.0.0",
  39. "pino-pretty": "^10.3.1",
  40. "typescript": "^5.0.4"
  41. },
  42. "optionalDependencies": {
  43. "bufferutil": "^4.0.7",
  44. "utf-8-validate": "^6.0.3"
  45. }
  46. }