2014-04-28 11:45:59 -04:00
|
|
|
{
|
|
|
|
"name": "docstore-sharelatex",
|
2015-02-10 08:22:28 -05:00
|
|
|
"version": "0.1.2",
|
2014-04-28 11:45:59 -04:00
|
|
|
"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"
|
|
|
|
},
|
2017-12-29 03:12:31 -05:00
|
|
|
"scripts": {
|
2020-02-16 08:59:59 -05:00
|
|
|
"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",
|
2020-02-16 08:59:59 -05:00
|
|
|
"lint": "node_modules/.bin/eslint .",
|
|
|
|
"format": "node_modules/.bin/prettier-eslint '**/*.js' --list-different",
|
|
|
|
"format:fix": "node_modules/.bin/prettier-eslint '**/*.js' --write"
|
2017-12-29 03:12:31 -05:00
|
|
|
},
|
2014-04-28 11:45:59 -04:00
|
|
|
"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",
|
2017-08-22 03:26:30 -04:00
|
|
|
"mongojs": "2.4.0",
|
2019-01-30 11:03:28 -05:00
|
|
|
"settings-sharelatex": "^1.1.0",
|
2017-12-29 05:35:40 -05:00
|
|
|
"underscore": "~1.6.0"
|
2014-04-28 11:45:59 -04:00
|
|
|
},
|
|
|
|
"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",
|
2014-04-28 11:45:59 -04:00
|
|
|
"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"
|
2014-04-28 11:45:59 -04:00
|
|
|
}
|
|
|
|
}
|