overleaf/services/docstore/package.json

44 lines
1.4 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 .",
"format": "node_modules/.bin/prettier-eslint '**/*.js' --list-different",
"format:fix": "node_modules/.bin/prettier-eslint '**/*.js' --write"
},
"dependencies": {
2017-12-29 05:35:40 -05:00
"async": "~0.8.0",
"body-parser": "~1.0.2",
2018-12-11 09:34:39 -05:00
"coffee-script": "^1.12.7",
2017-12-29 05:35:40 -05:00
"express": "~4.1.1",
2019-06-19 04:37:54 -04:00
"logger-sharelatex": "^1.7.0",
"metrics-sharelatex": "^2.2.0",
"mongojs": "2.4.0",
"settings-sharelatex": "^1.1.0",
2017-12-29 05:35:40 -05:00
"underscore": "~1.6.0"
},
"devDependencies": {
2017-12-29 05:35:40 -05:00
"bunyan": "~0.22.3",
"chai": "~1.9.1",
2018-05-23 06:27:31 -04:00
"mocha": "^4.0.1",
2017-12-29 05:35:40 -05:00
"request": "~2.34.0",
"sandboxed-module": "~0.3.0",
2017-12-29 05:35:40 -05:00
"sinon": "~3.2.1"
2016-06-03 05:58:53 -04:00
},
"engines": {
2018-04-26 05:24:59 -04:00
"node": "~6.14.1"
}
}