2014-02-12 05:40:42 -05:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/document-updater",
|
2014-08-19 09:06:56 -04:00
|
|
|
"description": "An API for applying incoming updates to documents in real-time",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2017-12-29 03:13:16 -05:00
|
|
|
"scripts": {
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
2020-05-06 06:04:19 -04:00
|
|
|
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
|
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
2023-12-07 05:05:50 -05:00
|
|
|
"nodemon": "node --watch app.js",
|
2023-12-04 04:22:39 -05:00
|
|
|
"benchmark:apply": "node benchmarks/apply",
|
2022-02-07 06:46:51 -05:00
|
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
2024-01-16 14:24:03 -05:00
|
|
|
"lint:fix": "eslint --fix .",
|
|
|
|
"types:check": "tsc --noEmit"
|
2017-12-29 03:13:16 -05:00
|
|
|
},
|
2014-02-12 05:40:42 -05:00
|
|
|
"dependencies": {
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/o-error": "*",
|
2024-01-23 05:45:06 -05:00
|
|
|
"@overleaf/promise-utils": "*",
|
2022-10-05 08:17:32 -04:00
|
|
|
"@overleaf/ranges-tracker": "*",
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/redis-wrapper": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2024-01-30 10:35:54 -05:00
|
|
|
"@types/chai-as-promised": "^7.1.8",
|
2024-05-31 05:51:51 -04:00
|
|
|
"async": "^3.2.5",
|
2020-03-19 11:20:32 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:45 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2023-01-31 10:42:43 -05:00
|
|
|
"diff-match-patch": "overleaf/diff-match-patch#89805f9c671a77a263fc53461acd62aa7498f688",
|
2024-04-22 08:12:16 -04:00
|
|
|
"express": "^4.19.2",
|
2021-04-29 06:45:07 -04:00
|
|
|
"lodash": "^4.17.21",
|
2023-12-14 09:28:19 -05:00
|
|
|
"mongodb": "^6.2.0",
|
|
|
|
"mongodb-legacy": "^6.0.1",
|
2020-03-19 11:23:45 -04:00
|
|
|
"request": "^2.88.2",
|
2023-01-26 07:59:49 -05:00
|
|
|
"requestretry": "^7.1.0"
|
2014-02-12 05:40:42 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 06:55:13 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2016-06-17 07:17:22 -04:00
|
|
|
"cluster-key-slot": "^1.0.5",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2021-04-01 15:51:00 -04:00
|
|
|
"sandboxed-module": "^2.0.4",
|
2022-02-07 06:46:51 -05:00
|
|
|
"sinon": "^9.2.4",
|
2023-09-06 10:23:23 -04:00
|
|
|
"sinon-chai": "^3.7.0",
|
2024-01-11 08:25:25 -05:00
|
|
|
"timekeeper": "^2.0.0",
|
|
|
|
"typescript": "^5.0.4"
|
2014-02-12 05:40:42 -05:00
|
|
|
}
|
2019-10-25 12:50:45 -04:00
|
|
|
}
|