| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "@overleaf/chat",
- "description": "The backend API that powers Overleaf chat",
- "private": true,
- "main": "app.js",
- "type": "module",
- "scripts": {
- "start": "node app.js",
- "test:acceptance": "yarn run test:acceptance:_run -- --grep=$MOCHA_GREP",
- "test:unit": "yarn run test:unit:_run -- --grep=$MOCHA_GREP",
- "nodemon": "node --watch app.js",
- "test:acceptance:_run": "mocha --recursive --timeout 15000 --exit --retries=$RETRIES $@ test/acceptance/js",
- "test:unit:_run": "mocha --recursive --exit $@ test/unit/js",
- "lint": "eslint --cache --cache-location ../../.cache/eslint/ --max-warnings 0 --format unix .",
- "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix .",
- "types:check": "tsc --noEmit"
- },
- "dependencies": {
- "@overleaf/logger": "*",
- "@overleaf/metrics": "*",
- "@overleaf/mongo-utils": "*",
- "@overleaf/promise-utils": "*",
- "@overleaf/settings": "*",
- "async": "^3.2.5",
- "body-parser": "1.20.4",
- "exegesis-express": "4.0.0",
- "express": "4.22.1",
- "mongodb": "6.12.0"
- },
- "devDependencies": {
- "@overleaf/migrations": "workspace:*",
- "@types/node": "^24.5.2",
- "acorn": "^7.1.1",
- "ajv": "^6.12.0",
- "chai": "^4.3.6",
- "chai-as-promised": "^7.1.1",
- "eslint": "^10.4.0",
- "mocha": "^11.1.0",
- "mocha-junit-reporter": "^2.2.1",
- "mocha-multi-reporters": "^1.5.1",
- "request": "2.88.2",
- "sinon": "^9.2.4",
- "timekeeper": "^2.2.0",
- "typescript": "^5.0.4"
- },
- "version": "1.0.0",
- "directories": {
- "test": "test"
- },
- "keywords": [],
- "author": "",
- "license": "AGPL-3.0"
- }
|