2014-02-14 11:39:05 -05:00
|
|
|
{
|
2022-02-07 06:46:51 -05:00
|
|
|
"name": "@overleaf/filestore",
|
2014-08-19 09:10:37 -04:00
|
|
|
"description": "An API for CRUD operations on binary files stored in S3",
|
2022-02-07 06:46:51 -05:00
|
|
|
"private": true,
|
|
|
|
"main": "app.js",
|
2018-01-16 07:27:36 -05:00
|
|
|
"scripts": {
|
2018-05-18 09:59:34 -04:00
|
|
|
"test:acceptance:run": "mocha --recursive --reporter spec --timeout 15000 $@ test/acceptance/js",
|
2019-12-16 06:16:27 -05:00
|
|
|
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
|
2018-01-16 07:27:36 -05:00
|
|
|
"test:unit:run": "mocha --recursive --reporter spec $@ test/unit/js",
|
2019-12-16 06:16:27 -05:00
|
|
|
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
|
|
|
|
"start": "node $NODE_APP_OPTIONS app.js",
|
2018-05-18 08:55:33 -04:00
|
|
|
"nodemon": "nodemon --config nodemon.json",
|
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'",
|
2019-12-16 12:09:38 -05:00
|
|
|
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
|
2021-07-13 06:55:17 -04:00
|
|
|
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
|
2022-02-07 06:46:51 -05:00
|
|
|
"lint:fix": "eslint --fix ."
|
2018-01-16 07:27:36 -05:00
|
|
|
},
|
2014-02-14 11:39:05 -05:00
|
|
|
"dependencies": {
|
2021-12-14 08:00:35 -05:00
|
|
|
"@overleaf/logger": "^3.1.0",
|
|
|
|
"@overleaf/metrics": "^4.0.0",
|
2020-06-25 08:27:14 -04:00
|
|
|
"@overleaf/o-error": "^3.0.0",
|
2021-08-19 04:08:05 -04:00
|
|
|
"@overleaf/object-persistor": "^1.0.1",
|
2022-02-07 06:46:51 -05:00
|
|
|
"@overleaf/settings": "^3.0.0",
|
2020-03-30 10:05:25 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2021-07-12 12:35:49 -04:00
|
|
|
"bunyan": "^1.8.15",
|
2020-03-30 10:05:25 -04:00
|
|
|
"express": "^4.17.1",
|
2020-01-06 09:09:28 -05:00
|
|
|
"glob": "^7.1.6",
|
2020-01-10 05:18:55 -05:00
|
|
|
"lodash.once": "^4.1.1",
|
2022-05-31 10:30:21 -04:00
|
|
|
"node-fetch": "^2.6.7",
|
2021-09-27 11:44:04 -04:00
|
|
|
"node-uuid": "~1.4.8",
|
2020-03-30 10:05:25 -04:00
|
|
|
"range-parser": "^1.2.1",
|
2020-07-07 08:49:54 -04:00
|
|
|
"stream-buffers": "~0.2.6",
|
2021-09-27 11:44:04 -04:00
|
|
|
"tiny-async-pool": "^1.1.0"
|
2014-02-14 11:39:05 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-22 11:51:59 -04:00
|
|
|
"@google-cloud/storage": "^5.1.2",
|
2020-07-23 05:45:27 -04:00
|
|
|
"aws-sdk": "^2.718.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"chai": "^4.3.6",
|
2019-12-23 08:36:12 -05:00
|
|
|
"chai-as-promised": "^7.1.1",
|
|
|
|
"disrequire": "^1.1.0",
|
2022-02-07 06:46:51 -05:00
|
|
|
"mocha": "^8.4.0",
|
2020-07-07 08:49:54 -04:00
|
|
|
"mongodb": "^3.5.9",
|
|
|
|
"sandboxed-module": "2.0.4",
|
|
|
|
"sinon": "9.0.2",
|
2022-02-07 06:46:51 -05:00
|
|
|
"sinon-chai": "^3.7.0",
|
2020-03-14 10:11:17 -04:00
|
|
|
"streamifier": "^0.1.1",
|
|
|
|
"timekeeper": "^2.2.0"
|
2014-02-14 11:39:05 -05:00
|
|
|
}
|
|
|
|
}
|