overleaf/services/track-changes/package.json

55 lines
1.7 KiB
JSON
Raw Normal View History

{
"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",
"private": true,
"main": "app.js",
"scripts": {
"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",
"lint": "eslint --max-warnings 0 --format unix .",
"format": "prettier --list-different $PWD/'**/*.js'",
"format:fix": "prettier --write $PWD/'**/*.js'",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@overleaf/logger": "^3.1.0",
"@overleaf/metrics": "^4.0.0",
"@overleaf/o-error": "^3.4.0",
"@overleaf/redis-wrapper": "^2.0.0",
"@overleaf/settings": "^3.0.0",
"async": "^3.2.2",
"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",
"bunyan": "^1.8.15",
"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",
"JSONStream": "^1.3.5",
"line-reader": "^0.4.0",
"lodash": "^4.17.21",
2017-08-24 09:32:27 -04:00
"mongo-uri": "^0.1.2",
"mongodb": "^3.6.0",
2017-08-24 09:32:27 -04:00
"redis": "~0.10.1",
"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",
"underscore": "~1.13.1",
"yazl": "^2.5.1"
2014-02-26 11:17:15 -05:00
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cli": "^1.0.1",
2019-01-08 11:39:46 -05:00
"memorystream": "0.3.1",
"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",
"timekeeper": "2.2.0"
}
}