overleaf/services/filestore/package.json

68 lines
2.4 KiB
JSON
Raw Normal View History

2014-02-14 11:39:05 -05:00
{
"name": "filestore-sharelatex",
2015-03-20 10:20:13 -04:00
"version": "0.1.4",
2014-08-19 09:10:37 -04:00
"description": "An API for CRUD operations on binary files stored in S3",
"repository": {
"type": "git",
"url": "https://github.com/sharelatex/filestore-sharelatex.git"
},
2018-01-16 07:27:36 -05:00
"scripts": {
"test:acceptance:run": "mocha --recursive --reporter spec --timeout 15000 $@ test/acceptance/js",
"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",
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
"start": "node $NODE_APP_OPTIONS app.js",
"nodemon": "nodemon --config nodemon.json",
2019-12-16 12:09:38 -05:00
"lint": "node_modules/.bin/eslint .",
2020-03-02 11:31:35 -05:00
"format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
"format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write",
2019-12-16 12:09:38 -05:00
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js"
2018-01-16 07:27:36 -05:00
},
2014-02-14 11:39:05 -05:00
"dependencies": {
2020-03-30 10:05:25 -04:00
"@google-cloud/storage": "^4.7.0",
2019-12-18 04:34:25 -05:00
"@overleaf/o-error": "^2.1.0",
2020-03-30 10:05:25 -04:00
"aws-sdk": "^2.648.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"lodash.once": "^4.1.1",
2020-03-23 11:18:07 -04:00
"logger-sharelatex": "^1.9.1",
2020-03-30 10:05:25 -04:00
"metrics-sharelatex": "^2.6.2",
"node-uuid": "~1.4.8",
"range-parser": "^1.2.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"settings-sharelatex": "^1.1.0",
"stream-buffers": "~0.2.5",
"tiny-async-pool": "^1.1.0"
2014-02-14 11:39:05 -05:00
},
"devDependencies": {
2020-03-30 10:05:25 -04:00
"babel-eslint": "^10.1.0",
"bunyan": "^1.8.12",
2018-11-29 11:41:30 -05:00
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"disrequire": "^1.1.0",
2020-03-30 10:05:25 -04:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
2019-12-16 05:15:52 -05:00
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
2020-03-30 10:05:25 -04:00
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
2019-12-16 05:15:52 -05:00
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
2020-03-30 10:15:21 -04:00
"mocha": "7.1.1",
2020-03-30 10:05:25 -04:00
"mongodb": "^3.5.5",
2019-12-16 05:15:52 -05:00
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
2018-11-29 11:41:30 -05:00
"sandboxed-module": "2.0.3",
2020-03-30 10:15:21 -04:00
"sinon": "9.0.1",
2020-03-30 10:05:25 -04:00
"sinon-chai": "^3.5.0",
"streamifier": "^0.1.1",
"timekeeper": "^2.2.0"
2014-02-14 11:39:05 -05:00
}
}