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",
|
2023-12-07 05:05:50 -05:00
|
|
|
"start": "node app.js",
|
|
|
|
"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'",
|
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",
|
2024-01-16 14:24:03 -05:00
|
|
|
"lint:fix": "eslint --fix .",
|
|
|
|
"types:check": "tsc --noEmit"
|
2018-01-16 07:27:36 -05:00
|
|
|
},
|
2014-02-14 11:39:05 -05:00
|
|
|
"dependencies": {
|
2022-10-27 11:35:43 -04:00
|
|
|
"@overleaf/logger": "*",
|
|
|
|
"@overleaf/metrics": "*",
|
|
|
|
"@overleaf/o-error": "*",
|
|
|
|
"@overleaf/object-persistor": "*",
|
|
|
|
"@overleaf/settings": "*",
|
2023-06-01 07:38:45 -04:00
|
|
|
"@overleaf/stream-utils": "^0.1.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",
|
2023-01-24 09:21:39 -05:00
|
|
|
"express": "^4.18.2",
|
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",
|
2020-03-30 10:05:25 -04:00
|
|
|
"range-parser": "^1.2.1",
|
2021-09-27 11:44:04 -04:00
|
|
|
"tiny-async-pool": "^1.1.0"
|
2014-02-14 11:39:05 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-05-24 05:47:13 -04:00
|
|
|
"@google-cloud/storage": "^6.10.1",
|
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",
|
2023-01-16 10:55:29 -05:00
|
|
|
"mocha": "^10.2.0",
|
2023-10-12 10:51:43 -04:00
|
|
|
"mongodb": "^6.1.0",
|
2020-07-07 08:49:54 -04:00
|
|
|
"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",
|
2024-01-11 08:25:25 -05:00
|
|
|
"timekeeper": "^2.2.0",
|
|
|
|
"typescript": "^5.0.4"
|
2014-02-14 11:39:05 -05:00
|
|
|
}
|
|
|
|
}
|