package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@overleaf/notifications",
  3. "description": "An API to handle user notifications",
  4. "private": true,
  5. "main": "app.ts",
  6. "type": "module",
  7. "scripts": {
  8. "start": "node app.ts",
  9. "test:acceptance:_run": "vitest --config ./vitest.config.acceptance.cjs",
  10. "test:acceptance": "yarn run test:acceptance:_run",
  11. "test:unit:_run": "vitest --config ./vitest.config.unit.cjs",
  12. "test:unit": "yarn run test:unit:_run",
  13. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --max-warnings 0 --format unix .",
  14. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix .",
  15. "types:check": "tsc --noEmit",
  16. "nodemon": "node --watch app.ts"
  17. },
  18. "author": "",
  19. "license": "ISC",
  20. "dependencies": {
  21. "@overleaf/fetch-utils": "workspace:*",
  22. "@overleaf/logger": "workspace:*",
  23. "@overleaf/metrics": "workspace:*",
  24. "@overleaf/mongo-utils": "workspace:*",
  25. "@overleaf/o-error": "workspace:*",
  26. "@overleaf/promise-utils": "workspace:*",
  27. "@overleaf/settings": "workspace:*",
  28. "@overleaf/validation-tools": "workspace:*",
  29. "async": "^3.2.5",
  30. "body-parser": "1.20.4",
  31. "bunyan": "^1.8.15",
  32. "express": "4.22.1",
  33. "mongodb-legacy": "6.1.3",
  34. "zod": "^4.1.7",
  35. "zod-validation-error": "^4.0.1"
  36. },
  37. "devDependencies": {
  38. "@overleaf/migrations": "workspace:*",
  39. "chai": "^4.3.6",
  40. "chai-as-promised": "^7.1.1",
  41. "mocha": "^11.1.0",
  42. "typescript": "^5.0.4",
  43. "vitest": "4.1.5"
  44. }
  45. }