2014-04-28 11:45:59 -04:00
|
|
|
{
|
|
|
|
"name": "docstore-sharelatex",
|
2015-02-10 08:22:28 -05:00
|
|
|
"version": "0.1.2",
|
2014-04-28 11:45:59 -04:00
|
|
|
"description": "A CRUD API for handling text documents in projects",
|
|
|
|
"author": "ShareLaTeX <team@sharelatex>",
|
2014-08-19 08:37:06 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/sharelatex/docstore-sharelatex.git"
|
|
|
|
},
|
2017-12-29 03:12:31 -05:00
|
|
|
"scripts": {
|
2020-02-16 08:59:59 -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-09-28 07:13:53 -04:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
2020-07-31 11:24:41 -04:00
|
|
|
"lint": "node_modules/.bin/eslint --max-warnings 0 .",
|
2020-05-28 09:19:48 -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:12:31 -05:00
|
|
|
},
|
2014-04-28 11:45:59 -04:00
|
|
|
"dependencies": {
|
2021-02-16 10:10:10 -05:00
|
|
|
"@overleaf/metrics": "^3.5.1",
|
2021-04-29 10:30:53 -04:00
|
|
|
"@overleaf/o-error": "^3.0.0",
|
2020-12-02 07:39:01 -05:00
|
|
|
"@overleaf/object-persistor": "https://github.com/overleaf/object-persistor/archive/4ca62157a2beb747e9a56da3ce1569124b90378a.tar.gz",
|
2020-03-23 07:45:29 -04:00
|
|
|
"async": "^2.6.3",
|
2020-03-23 07:30:16 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:50 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2021-02-15 08:13:48 -05:00
|
|
|
"celebrate": "^13.0.4",
|
2020-03-23 07:30:16 -04:00
|
|
|
"express": "^4.17.1",
|
2020-08-12 10:17:06 -04:00
|
|
|
"logger-sharelatex": "^2.2.0",
|
2020-08-21 12:50:01 -04:00
|
|
|
"mongodb": "^3.6.0",
|
2020-09-14 11:34:34 -04:00
|
|
|
"p-map": "^4.0.0",
|
2021-04-29 10:30:53 -04:00
|
|
|
"request": "^2.88.2",
|
2019-01-30 11:03:28 -05:00
|
|
|
"settings-sharelatex": "^1.1.0",
|
2020-07-23 14:29:25 -04:00
|
|
|
"streamifier": "^0.1.1",
|
2021-05-27 11:43:37 -04:00
|
|
|
"underscore": "~1.12.1"
|
2014-04-28 11:45:59 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-23 14:29:25 -04:00
|
|
|
"@google-cloud/storage": "^5.1.2",
|
2020-03-23 07:32:25 -04:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-03-23 07:39:09 -04:00
|
|
|
"chai": "~4.2.0",
|
2020-07-23 14:29:25 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2020-03-23 07:32:25 -04:00
|
|
|
"eslint": "^6.8.0",
|
2020-08-12 10:17:06 -04:00
|
|
|
"eslint-config-prettier": "^6.10.0",
|
|
|
|
"eslint-config-standard": "^14.1.0",
|
2020-02-16 09:01:32 -05:00
|
|
|
"eslint-config-standard-jsx": "^8.1.0",
|
|
|
|
"eslint-config-standard-react": "^9.2.0",
|
2020-08-12 10:17:06 -04:00
|
|
|
"eslint-plugin-chai-expect": "^2.1.0",
|
|
|
|
"eslint-plugin-chai-friendly": "^0.5.0",
|
|
|
|
"eslint-plugin-import": "^2.20.1",
|
2020-07-23 14:29:25 -04:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.3.1",
|
2020-03-23 07:32:25 -04:00
|
|
|
"eslint-plugin-mocha": "^6.3.0",
|
2020-08-12 10:17:06 -04:00
|
|
|
"eslint-plugin-node": "^11.0.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
2020-02-16 09:01:32 -05:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2020-07-23 14:29:25 -04:00
|
|
|
"eslint-plugin-react": "^7.20.3",
|
2020-02-16 09:01:32 -05:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-07-23 14:29:25 -04:00
|
|
|
"mocha": "^7.2.0",
|
2020-08-12 10:17:06 -04:00
|
|
|
"prettier": "^2.0.0",
|
2020-02-16 09:01:32 -05:00
|
|
|
"prettier-eslint-cli": "^5.0.0",
|
2020-07-23 14:29:25 -04:00
|
|
|
"sandboxed-module": "~2.0.4",
|
|
|
|
"sinon": "~9.0.2",
|
|
|
|
"sinon-chai": "^3.5.0"
|
2016-06-03 05:58:53 -04:00
|
|
|
},
|
|
|
|
"engines": {
|
2018-04-26 05:24:59 -04:00
|
|
|
"node": "~6.14.1"
|
2014-04-28 11:45:59 -04:00
|
|
|
}
|
|
|
|
}
|