package.json 1.1 KB

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