overleaf/services/clsi/package.json

69 lines
2.4 KiB
JSON
Raw Normal View History

2014-02-12 12:27:43 -05:00
{
2018-05-24 14:03:57 -04:00
"name": "node-clsi",
"description": "A Node.js implementation of the CLSI LaTeX web-API",
"version": "0.1.4",
2014-08-19 09:01:01 -04:00
"repository": {
2018-05-24 14:03:57 -04:00
"type": "git",
2014-08-19 09:01:01 -04:00
"url": "https://github.com/sharelatex/clsi-sharelatex.git"
2018-05-24 14:03:57 -04:00
},
"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-05-24 14:03:57 -04:00
"nodemon": "nodemon --config nodemon.json",
"lint": "node_modules/.bin/eslint .",
2020-03-11 06:55:44 -04:00
"format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
"format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
2018-05-24 14:03:57 -04:00
},
"author": "James Allen <james@sharelatex.com>",
2014-02-12 12:27:43 -05:00
"dependencies": {
2020-03-11 07:20:48 -04:00
"async": "3.2.0",
"body-parser": "^1.19.0",
"dockerode": "^3.1.0",
2020-03-11 07:20:48 -04:00
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"heapdump": "^0.3.15",
2020-03-11 07:20:48 -04:00
"lockfile": "^1.0.4",
2020-03-23 11:18:07 -04:00
"logger-sharelatex": "^1.9.1",
"lynx": "0.2.0",
"metrics-sharelatex": "^2.6.0",
2020-03-11 06:58:42 -04:00
"mysql": "^2.18.1",
2020-03-11 07:20:48 -04:00
"request": "^2.88.2",
2020-03-16 11:31:02 -04:00
"sequelize": "^5.21.5",
"settings-sharelatex": "git+https://github.com/sharelatex/settings-sharelatex.git#v1.1.0",
2018-05-24 14:03:57 -04:00
"smoke-test-sharelatex": "git+https://github.com/sharelatex/smoke-test-sharelatex.git#v0.2.0",
2020-03-11 06:55:44 -04:00
"sqlite3": "^4.1.1",
2020-03-11 07:20:48 -04:00
"underscore": "^1.9.2",
"v8-profiler-node8": "^6.1.1",
"wrench": "~1.5.9"
2018-05-24 14:03:57 -04:00
},
2014-02-12 12:27:43 -05:00
"devDependencies": {
2020-03-11 07:20:48 -04:00
"babel-eslint": "^10.1.0",
"bunyan": "^1.8.12",
"chai": "~4.2.0",
2020-03-11 06:55:44 -04:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
2020-03-11 06:55:44 -04:00
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
2020-03-11 07:20:48 -04:00
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
2020-03-12 05:35:11 -04:00
"mocha": "^7.1.0",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0",
"sandboxed-module": "^2.0.3",
2020-03-12 05:35:11 -04:00
"sinon": "~9.0.1",
2020-03-11 07:20:48 -04:00
"timekeeper": "2.2.0"
2014-02-12 12:27:43 -05:00
}
}