overleaf/services/docstore/package.json

52 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "docstore-sharelatex",
2015-02-10 08:22:28 -05:00
"version": "0.1.2",
"description": "A CRUD API for handling text documents in projects",
"author": "ShareLaTeX <team@sharelatex>",
2014-08-19 08:37:06 -04:00
"repository": {
"type": "git",
"url": "https://github.com/sharelatex/docstore-sharelatex.git"
},
"scripts": {
"start": "node $NODE_APP_OPTIONS app.js",
"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",
2018-09-28 07:13:53 -04:00
"nodemon": "nodemon --config nodemon.json",
"lint": "../../node_modules/.bin/eslint --max-warnings 0 --format unix .",
"format": "../../node_modules/.bin/prettier --list-different $PWD/'**/*.js'",
"format:fix": "../../node_modules/.bin/prettier --write $PWD/'**/*.js'",
"lint:fix": "../../node_modules/.bin/eslint --fix ."
},
"dependencies": {
"@overleaf/logger": "^3.1.0",
"@overleaf/metrics": "^4.0.0",
"@overleaf/o-error": "^3.4.0",
"@overleaf/object-persistor": "^1.0.1",
"@overleaf/settings": "^2.1.1",
2020-03-23 07:45:29 -04:00
"async": "^2.6.3",
2020-03-23 07:30:16 -04:00
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"celebrate": "^13.0.4",
2020-03-23 07:30:16 -04:00
"express": "^4.17.1",
"mongodb": "^3.6.0",
2020-09-14 11:34:34 -04:00
"p-map": "^4.0.0",
"request": "^2.88.2",
"streamifier": "^0.1.1",
"underscore": "~1.12.1"
},
"devDependencies": {
"@google-cloud/storage": "^5.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.3.2",
"sandboxed-module": "~2.0.4",
"sinon": "~9.0.2",
"sinon-chai": "^3.5.0"
2016-06-03 05:58:53 -04:00
},
"engines": {
2018-04-26 05:24:59 -04:00
"node": "~6.14.1"
}
}