overleaf/services/contacts/package.json
2020-02-17 07:35:05 +00:00

41 lines
1.4 KiB
JSON

{
"name": "contacts-sharelatex",
"version": "0.1.0",
"description": "An API for tracking contacts of a user",
"author": "ShareLaTeX <team@sharelatex.com>",
"repository": {
"type": "git",
"url": "https://github.com/sharelatex/contacts-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",
"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": {
"async": "~0.8.0",
"body-parser": "~1.0.2",
"coffee-script": "^1.7.1",
"express": "~4.1.1",
"logger-sharelatex": "^1.7.0",
"metrics-sharelatex": "^2.2.0",
"mongojs": "2.4.0",
"request": "~2.34.0",
"settings-sharelatex": "^1.1.0",
"underscore": "~1.6.0"
},
"devDependencies": {
"bunyan": "~0.22.3",
"chai": "~1.9.1",
"mocha": "^4.0.1",
"sandboxed-module": "~0.3.0",
"sinon": "~1.5.2",
"timekeeper": "0.0.5"
}
}