2013-08-08 11:42:14 -04:00
|
|
|
{
|
2014-01-27 12:51:09 -05:00
|
|
|
"name": "history-sharelatex",
|
2015-03-20 11:27:34 -04:00
|
|
|
"version": "0.1.4",
|
2014-08-19 09:15:44 -04:00
|
|
|
"description": "An API for saving and compressing individual document updates into a browsable history",
|
|
|
|
"repository": {
|
2017-08-24 09:32:27 -04:00
|
|
|
"type": "git",
|
2014-08-19 09:15:44 -04:00
|
|
|
"url": "https://github.com/sharelatex/track-changes-sharelatex.git"
|
|
|
|
},
|
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",
|
2020-08-10 12:23:17 -04:00
|
|
|
"lint": "node_modules/.bin/eslint --max-warnings 0 .",
|
2020-03-20 12:31:01 -04:00
|
|
|
"format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
|
|
|
|
"format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
|
2017-12-29 03:18:04 -05:00
|
|
|
},
|
2014-01-27 12:51:09 -05:00
|
|
|
"dependencies": {
|
2020-11-25 06:57:20 -05:00
|
|
|
"@overleaf/metrics": "^3.4.1",
|
2020-11-10 06:32:05 -05:00
|
|
|
"@overleaf/o-error": "^3.1.0",
|
|
|
|
"@overleaf/redis-wrapper": "^2.0.0",
|
2020-03-20 12:33:45 -04:00
|
|
|
"JSONStream": "^1.3.5",
|
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",
|
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",
|
2020-03-23 06:28:26 -04:00
|
|
|
"line-reader": "^0.4.0",
|
2020-08-12 11:16:42 -04:00
|
|
|
"logger-sharelatex": "^2.2.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",
|
2019-01-31 11:56:10 -05:00
|
|
|
"settings-sharelatex": "^1.1.0",
|
2020-03-20 12:33:45 -04:00
|
|
|
"underscore": "~1.9.2"
|
2014-02-26 11:17:15 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-20 12:33:45 -04:00
|
|
|
"babel-eslint": "^10.1.0",
|
2017-08-24 09:32:27 -04:00
|
|
|
"bunyan": "~2.0.2",
|
2020-03-20 12:33:45 -04:00
|
|
|
"chai": "~4.2.0",
|
2020-03-23 06:28:26 -04:00
|
|
|
"cli": "^1.0.1",
|
2020-03-20 12:31:01 -04:00
|
|
|
"eslint": "^6.8.0",
|
2020-08-10 12:23:17 -04:00
|
|
|
"eslint-config-prettier": "^6.10.0",
|
|
|
|
"eslint-config-standard": "^14.1.0",
|
2020-02-17 12:33:37 -05:00
|
|
|
"eslint-config-standard-jsx": "^8.1.0",
|
|
|
|
"eslint-config-standard-react": "^9.2.0",
|
|
|
|
"eslint-plugin-chai-expect": "^2.1.0",
|
|
|
|
"eslint-plugin-chai-friendly": "^0.5.0",
|
|
|
|
"eslint-plugin-import": "^2.20.1",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
2020-03-20 12:31:01 -04:00
|
|
|
"eslint-plugin-mocha": "^6.3.0",
|
2020-02-17 12:33:37 -05:00
|
|
|
"eslint-plugin-node": "^11.0.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2020-03-20 12:33:45 -04:00
|
|
|
"eslint-plugin-react": "^7.19.0",
|
2020-02-17 12:33:37 -05:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2019-01-08 11:39:46 -05:00
|
|
|
"memorystream": "0.3.1",
|
2020-03-23 05:35:53 -04:00
|
|
|
"mocha": "^7.1.1",
|
2020-08-10 12:23:17 -04:00
|
|
|
"prettier": "^2.0.0",
|
2020-02-17 12:33:37 -05:00
|
|
|
"prettier-eslint-cli": "^5.0.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
|
|
|
}
|