package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 ../../node_modules/.cache/eslint/ --max-warnings 0 --format unix .",
  14. "lint:fix": "eslint --cache --cache-location ../../node_modules/.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. "method-override": "^3.0.0",
  34. "mongodb-legacy": "6.1.3",
  35. "zod": "^4.1.7",
  36. "zod-validation-error": "^4.0.1"
  37. },
  38. "devDependencies": {
  39. "@overleaf/migrations": "workspace:*",
  40. "@types/method-override": "^3.0.0",
  41. "chai": "^4.3.6",
  42. "chai-as-promised": "^7.1.1",
  43. "mocha": "^11.1.0",
  44. "typescript": "^5.0.4",
  45. "vitest": "4.1.5"
  46. }
  47. }