mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ee85d948e2
GitOrigin-RevId: ef2ef77e26df59d1af3df6dc664e284d3c70102d
59 lines
2 KiB
JSON
59 lines
2 KiB
JSON
{
|
|
"name": "@overleaf/project-history",
|
|
"description": "An API for saving and compressing individual document updates into a browseable history",
|
|
"private": true,
|
|
"main": "app.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
|
"start": "node $NODE_APP_OPTIONS app.js",
|
|
"nodemon": "nodemon --config nodemon.json",
|
|
"test:acceptance:_run": "LOG_LEVEL=error mocha --loader=esmock --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
|
"test:unit:_run": "LOG_LEVEL=fatal mocha --loader=esmock --recursive --reporter spec $@ test/unit/js",
|
|
"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": "*",
|
|
"@overleaf/metrics": "*",
|
|
"@overleaf/o-error": "*",
|
|
"@overleaf/redis-wrapper": "*",
|
|
"@overleaf/settings": "*",
|
|
"async": "^3.2.2",
|
|
"aws-sdk": "^2.650.0",
|
|
"bluebird": "^3.7.2",
|
|
"body-parser": "^1.19.0",
|
|
"bunyan": "^1.8.15",
|
|
"byline": "^4.2.1",
|
|
"celebrate": "^10.1.0",
|
|
"cli": "^1.0.1",
|
|
"diff-match-patch": "https://github.com/overleaf/diff-match-patch/archive/89805f9c671a77a263fc53461acd62aa7498f688.tar.gz",
|
|
"esmock": "^2.1.0",
|
|
"express": "4.17.1",
|
|
"heap": "^0.2.6",
|
|
"JSONStream": "^1.3.5",
|
|
"line-reader": "^0.2.4",
|
|
"lodash": "^4.17.20",
|
|
"mongo-uri": "^0.1.2",
|
|
"mongodb": "^4.11.0",
|
|
"overleaf-editor-core": "*",
|
|
"redis": "~0.10.1",
|
|
"request": "^2.88.2",
|
|
"requestretry": "^1.12.2",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.6",
|
|
"chai-as-promised": "^7.1.1",
|
|
"memorystream": "0.3.1",
|
|
"mocha": "^8.4.0",
|
|
"multer": "^1.4.2",
|
|
"nock": "^12.0.3",
|
|
"sinon": "~9.0.1",
|
|
"sinon-chai": "^3.7.0",
|
|
"timekeeper": "2.2.0"
|
|
}
|
|
}
|