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