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