overleaf/services/document-updater/package.json

46 lines
2.2 KiB
JSON
Raw Normal View History

2014-02-12 10:40:42 +00:00
{
"name": "document-updater-sharelatex",
2015-03-20 14:21:34 +00:00
"version": "0.1.4",
2014-08-19 13:06:56 +00:00
"description": "An API for applying incoming updates to documents in real-time",
"repository": {
"type": "git",
"url": "https://github.com/sharelatex/document-updater-sharelatex.git"
},
"scripts": {
2019-01-04 09:24:09 +00:00
"compile:app": "([ -e app/coffee ] && coffee -m $COFFEE_OPTIONS -o app/js -c app/coffee || echo 'No CoffeeScript folder to compile') && ( [ -e app.coffee ] && coffee -m $COFFEE_OPTIONS -c app.coffee || echo 'No CoffeeScript app to compile')",
2018-05-23 12:52:20 +00:00
"start": "npm run compile:app && node $NODE_APP_OPTIONS app.js",
2018-09-28 14:13:47 +00:00
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 30000 --exit $@ test/acceptance/js",
2018-05-23 12:52:20 +00:00
"test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
2018-09-28 14:13:47 +00:00
"test:unit:_run": "mocha --recursive --reporter spec --exit $@ test/unit/js",
2018-05-23 12:52:20 +00:00
"test:unit": "npm run compile:app && npm run compile:unit_tests && npm run test:unit:_run -- --grep=$MOCHA_GREP",
"compile:unit_tests": "[ ! -e test/unit/coffee ] && echo 'No unit tests to compile' || coffee -o test/unit/js -c test/unit/coffee",
"compile:acceptance_tests": "[ ! -e test/acceptance/coffee ] && echo 'No acceptance tests to compile' || coffee -o test/acceptance/js -c test/acceptance/coffee",
2018-09-28 14:13:47 +00:00
"compile:all": "npm run compile:app && npm run compile:unit_tests && npm run compile:acceptance_tests && npm run compile:smoke_tests",
"nodemon": "nodemon --config nodemon.json",
"compile:smoke_tests": "[ ! -e test/smoke/coffee ] && echo 'No smoke tests to compile' || coffee -o test/smoke/js -c test/smoke/coffee"
},
2014-02-12 10:40:42 +00:00
"dependencies": {
2017-10-23 15:02:24 +00:00
"async": "^2.5.0",
"bunyan": "~0.22.1",
"coffee-script": "~1.7.0",
"express": "3.11.0",
"lodash": "^4.17.13",
2020-04-06 09:43:53 +00:00
"logger-sharelatex": "^1.9.1",
2020-03-25 14:27:04 +00:00
"metrics-sharelatex": "^2.6.2",
2019-04-11 15:32:31 +00:00
"mongojs": "^2.6.0",
2020-03-31 09:21:50 +00:00
"redis-sharelatex": "^1.0.12",
2020-02-17 14:05:59 +00:00
"request": "^2.47.0",
2020-02-18 09:21:30 +00:00
"requestretry": "^4.1.0",
"settings-sharelatex": "^1.1.0"
2014-02-12 10:40:42 +00:00
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"cluster-key-slot": "^1.0.5",
2018-02-15 16:28:40 +00:00
"mocha": "^5.0.1",
"sandboxed-module": "~0.2.0",
"sinon": "~1.5.2",
2017-10-12 10:23:24 +00:00
"timekeeper": "^2.0.0"
2014-02-12 10:40:42 +00:00
}
2019-10-25 16:50:45 +00:00
}