2014-02-12 10:40:42 +00:00
|
|
|
{
|
|
|
|
"name": "document-updater-sharelatex",
|
2015-03-20 14:21:34 +00:00
|
|
|
"version": "0.1.4",
|
2014-08-19 13:06:56 +00:00
|
|
|
"description": "An API for applying incoming updates to documents in real-time",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/document-updater-sharelatex.git"
|
|
|
|
},
|
2017-12-29 08:13:16 +00:00
|
|
|
"scripts": {
|
2020-05-06 10:04:19 +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-09-28 14:13:47 +00:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2021-12-16 09:04:32 +00:00
|
|
|
"lint": "../../node_modules/.bin/eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "../../node_modules/.bin/prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "../../node_modules/.bin/prettier --write $PWD/'**/*.js'",
|
|
|
|
"lint:fix": "../../node_modules/.bin/eslint --fix ."
|
2017-12-29 08:13:16 +00:00
|
|
|
},
|
2014-02-12 10:40:42 +00:00
|
|
|
"dependencies": {
|
2021-12-14 13:00:35 +00:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2022-01-27 10:29:10 +00:00
|
|
|
"@overleaf/o-error": "^3.4.0",
|
2021-04-29 10:45:07 +00:00
|
|
|
"@overleaf/redis-wrapper": "^2.0.1",
|
2021-07-12 16:47:15 +00:00
|
|
|
"@overleaf/settings": "^2.1.1",
|
2017-10-23 15:02:24 +00:00
|
|
|
"async": "^2.5.0",
|
2020-03-19 15:20:32 +00:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 16:35:45 +00:00
|
|
|
"bunyan": "^1.8.15",
|
2020-12-07 21:13:36 +00:00
|
|
|
"diff-match-patch": "https://github.com/overleaf/diff-match-patch/archive/89805f9c671a77a263fc53461acd62aa7498f688.tar.gz",
|
2020-03-19 15:20:32 +00:00
|
|
|
"express": "4.17.1",
|
2021-04-29 10:45:07 +00:00
|
|
|
"lodash": "^4.17.21",
|
|
|
|
"mongodb": "^3.6.6",
|
2020-03-19 15:23:45 +00:00
|
|
|
"request": "^2.88.2",
|
2021-07-12 16:47:15 +00:00
|
|
|
"requestretry": "^4.1.2"
|
2014-02-12 10:40:42 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-07-13 10:55:13 +00:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"chai-as-promised": "^7.1.1",
|
2016-06-17 11:17:22 +00:00
|
|
|
"cluster-key-slot": "^1.0.5",
|
2021-04-01 19:51:00 +00:00
|
|
|
"mocha": "^8.3.2",
|
|
|
|
"sandboxed-module": "^2.0.4",
|
2020-05-15 18:29:49 +00:00
|
|
|
"sinon": "^9.0.2",
|
2020-05-06 10:06:28 +00:00
|
|
|
"timekeeper": "^2.0.0"
|
2014-02-12 10:40:42 +00:00
|
|
|
}
|
2019-10-25 16:50:45 +00:00
|
|
|
}
|