package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@overleaf/chat",
  3. "description": "The backend API that powers Overleaf chat",
  4. "private": true,
  5. "main": "app.js",
  6. "type": "module",
  7. "scripts": {
  8. "start": "node app.js",
  9. "test:acceptance": "yarn run test:acceptance:_run -- --grep=$MOCHA_GREP",
  10. "test:unit": "yarn run test:unit:_run -- --grep=$MOCHA_GREP",
  11. "nodemon": "node --watch app.js",
  12. "test:acceptance:_run": "mocha --recursive --timeout 15000 --exit --retries=$RETRIES $@ test/acceptance/js",
  13. "test:unit:_run": "mocha --recursive --exit $@ test/unit/js",
  14. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --max-warnings 0 --format unix .",
  15. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix .",
  16. "types:check": "tsc --noEmit"
  17. },
  18. "dependencies": {
  19. "@overleaf/logger": "*",
  20. "@overleaf/metrics": "*",
  21. "@overleaf/mongo-utils": "*",
  22. "@overleaf/promise-utils": "*",
  23. "@overleaf/settings": "*",
  24. "async": "^3.2.5",
  25. "body-parser": "1.20.4",
  26. "exegesis-express": "4.0.0",
  27. "express": "4.22.1",
  28. "mongodb": "6.12.0"
  29. },
  30. "devDependencies": {
  31. "@overleaf/migrations": "workspace:*",
  32. "acorn": "^7.1.1",
  33. "ajv": "^6.12.0",
  34. "chai": "^4.3.6",
  35. "chai-as-promised": "^7.1.1",
  36. "mocha": "^11.1.0",
  37. "mocha-junit-reporter": "^2.2.1",
  38. "mocha-multi-reporters": "^1.5.1",
  39. "request": "2.88.2",
  40. "sinon": "^9.2.4",
  41. "timekeeper": "^2.2.0",
  42. "typescript": "^5.0.4"
  43. },
  44. "version": "1.0.0",
  45. "directories": {
  46. "test": "test"
  47. },
  48. "keywords": [],
  49. "author": "",
  50. "license": "AGPL-3.0"
  51. }