2013-08-08 15:42:14 +00:00
|
|
|
{
|
2022-02-07 11:46:51 +00:00
|
|
|
"name": "@overleaf/track-changes",
|
2014-08-19 13:15:44 +00:00
|
|
|
"description": "An API for saving and compressing individual document updates into a browsable history",
|
2022-02-07 11:46:51 +00:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2017-12-29 08:18:04 +00:00
|
|
|
"scripts": {
|
2020-02-17 17:33:01 +00:00
|
|
|
"start": "node $NODE_APP_OPTIONS app.js",
|
|
|
|
"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",
|
2018-10-04 09:32:21 +00:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2022-02-07 11:46:51 +00:00
|
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
|
|
"lint:fix": "eslint --fix ."
|
2017-12-29 08:18:04 +00:00
|
|
|
},
|
2014-01-27 17:51:09 +00:00
|
|
|
"dependencies": {
|
2022-10-27 15:35:43 +00:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/o-error": "*",
|
|
|
|
"@overleaf/redis-wrapper": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2022-06-21 08:07:14 +00:00
|
|
|
"async": "^3.2.2",
|
2020-03-23 09:21:46 +00:00
|
|
|
"aws-sdk": "^2.643.0",
|
2020-03-23 10:10:24 +00:00
|
|
|
"body-parser": "^1.19.0",
|
2020-09-10 13:23:04 +00:00
|
|
|
"bson": "^1.1.5",
|
2021-07-12 16:35:46 +00:00
|
|
|
"bunyan": "^1.8.15",
|
2020-03-23 10:28:26 +00:00
|
|
|
"byline": "^5.0.0",
|
2023-01-24 14:21:39 +00:00
|
|
|
"express": "^4.18.2",
|
2017-08-24 13:32:27 +00:00
|
|
|
"heap": "^0.2.6",
|
2022-02-07 11:46:51 +00:00
|
|
|
"JSONStream": "^1.3.5",
|
2020-03-23 10:28:26 +00:00
|
|
|
"line-reader": "^0.4.0",
|
2022-06-10 08:20:57 +00:00
|
|
|
"lodash": "^4.17.21",
|
2017-08-24 13:32:27 +00:00
|
|
|
"mongo-uri": "^0.1.2",
|
2020-09-10 11:58:06 +00:00
|
|
|
"mongodb": "^3.6.0",
|
2017-08-24 13:32:27 +00:00
|
|
|
"redis": "~0.10.1",
|
2020-02-19 11:38:33 +00:00
|
|
|
"request": "~2.88.2",
|
2023-01-26 12:59:49 +00:00
|
|
|
"requestretry": "^7.1.0",
|
2020-03-20 16:32:23 +00:00
|
|
|
"s3-streams": "^0.4.0",
|
2021-08-16 12:09:52 +00:00
|
|
|
"underscore": "~1.13.1",
|
|
|
|
"yazl": "^2.5.1"
|
2014-02-26 16:17:15 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 11:46:51 +00:00
|
|
|
"chai": "^4.3.6",
|
2021-07-13 10:55:14 +00:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-03-23 10:28:26 +00:00
|
|
|
"cli": "^1.0.1",
|
2019-01-08 16:39:46 +00:00
|
|
|
"memorystream": "0.3.1",
|
2023-01-16 15:55:29 +00:00
|
|
|
"mocha": "^10.2.0",
|
2020-03-23 10:34:57 +00:00
|
|
|
"sandboxed-module": "~2.0.3",
|
2020-03-23 09:35:53 +00:00
|
|
|
"sinon": "~9.0.1",
|
2020-03-23 10:28:26 +00:00
|
|
|
"timekeeper": "2.2.0"
|
2014-01-27 17:51:09 +00:00
|
|
|
}
|
2013-08-08 15:42:14 +00:00
|
|
|
}
|