2014-04-28 11:45:59 -04:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/docstore",
|
2014-04-28 11:45:59 -04:00
|
|
|
"description": "A CRUD API for handling text documents in projects",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2017-12-29 03:12:31 -05:00
|
|
|
"scripts": {
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
2020-02-16 08:59:59 -05:00
|
|
|
"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",
|
2023-12-07 05:05:50 -05:00
|
|
|
"nodemon": "node --watch app.js",
|
2022-02-07 06:46:51 -05:00
|
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
|
|
"lint:fix": "eslint --fix ."
|
2017-12-29 03:12:31 -05:00
|
|
|
},
|
2014-04-28 11:45:59 -04:00
|
|
|
"dependencies": {
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/o-error": "*",
|
|
|
|
"@overleaf/object-persistor": "*",
|
2023-11-08 09:17:19 -05:00
|
|
|
"@overleaf/promise-utils": "*",
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/settings": "*",
|
2023-06-01 07:38:45 -04:00
|
|
|
"@overleaf/stream-utils": "^0.1.0",
|
2022-06-21 04:07:14 -04:00
|
|
|
"async": "^3.2.2",
|
2020-03-23 07:30:16 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2022-09-26 04:39:26 -04:00
|
|
|
"bson": "^1.1.4",
|
2021-07-12 12:35:50 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2021-02-15 08:13:48 -05:00
|
|
|
"celebrate": "^13.0.4",
|
2023-01-24 09:21:39 -05:00
|
|
|
"express": "^4.18.2",
|
2022-12-15 07:53:03 -05:00
|
|
|
"lodash": "^4.17.21",
|
2023-12-13 04:38:54 -05:00
|
|
|
"mongodb": "^6.2.0",
|
|
|
|
"mongodb-legacy": "^6.0.1",
|
2020-09-14 11:34:34 -04:00
|
|
|
"p-map": "^4.0.0",
|
2023-06-01 07:38:45 -04:00
|
|
|
"request": "^2.88.2"
|
2014-04-28 11:45:59 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-24 05:47:13 -04:00
|
|
|
"@google-cloud/storage": "^6.10.1",
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2020-07-23 14:29:25 -04:00
|
|
|
"chai-as-promised": "^7.1.1",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2020-07-23 14:29:25 -04:00
|
|
|
"sandboxed-module": "~2.0.4",
|
|
|
|
"sinon": "~9.0.2",
|
2022-02-07 06:46:51 -05:00
|
|
|
"sinon-chai": "^3.7.0"
|
2014-04-28 11:45:59 -04:00
|
|
|
}
|
|
|
|
}
|