package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "node-clsi",
  3. "description": "A Node.js implementation of the CLSI LaTeX web-API",
  4. "version": "0.1.4",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/sharelatex/clsi-sharelatex.git"
  8. },
  9. "scripts": {
  10. "start": "node $NODE_APP_OPTIONS app.js",
  11. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  12. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  13. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  14. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  15. "nodemon": "nodemon --config nodemon.json",
  16. "lint": "node_modules/.bin/eslint --max-warnings 0 .",
  17. "format": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --list-different",
  18. "format:fix": "node_modules/.bin/prettier-eslint $PWD'/**/*.js' --write"
  19. },
  20. "author": "James Allen <james@sharelatex.com>",
  21. "dependencies": {
  22. "async": "3.2.0",
  23. "body-parser": "^1.19.0",
  24. "diskusage": "^1.1.3",
  25. "dockerode": "^3.1.0",
  26. "express": "^4.17.1",
  27. "fs-extra": "^8.1.0",
  28. "heapdump": "^0.3.15",
  29. "lockfile": "^1.0.4",
  30. "lodash": "^4.17.15",
  31. "logger-sharelatex": "^1.9.1",
  32. "lynx": "0.2.0",
  33. "metrics-sharelatex": "^2.6.0",
  34. "mysql": "^2.18.1",
  35. "request": "^2.88.2",
  36. "sequelize": "^5.21.5",
  37. "settings-sharelatex": "git+https://github.com/sharelatex/settings-sharelatex.git#v1.1.0",
  38. "sqlite3": "^4.1.1",
  39. "v8-profiler-node8": "^6.1.1",
  40. "wrench": "~1.5.9"
  41. },
  42. "devDependencies": {
  43. "babel-eslint": "^10.1.0",
  44. "bunyan": "^1.8.12",
  45. "chai": "~4.2.0",
  46. "eslint": "^6.8.0",
  47. "eslint-config-prettier": "^6.10.0",
  48. "eslint-config-standard": "^14.1.0",
  49. "eslint-config-standard-jsx": "^8.1.0",
  50. "eslint-config-standard-react": "^9.2.0",
  51. "eslint-plugin-chai-expect": "^2.1.0",
  52. "eslint-plugin-chai-friendly": "^0.5.0",
  53. "eslint-plugin-import": "^2.20.1",
  54. "eslint-plugin-jsx-a11y": "^6.2.3",
  55. "eslint-plugin-mocha": "^6.3.0",
  56. "eslint-plugin-node": "^11.0.0",
  57. "eslint-plugin-prettier": "^3.1.2",
  58. "eslint-plugin-promise": "^4.2.1",
  59. "eslint-plugin-react": "^7.19.0",
  60. "eslint-plugin-standard": "^4.0.1",
  61. "mocha": "^7.1.0",
  62. "prettier": "^2.0.0",
  63. "prettier-eslint-cli": "^5.0.0",
  64. "sandboxed-module": "^2.0.3",
  65. "sinon": "~9.0.1",
  66. "timekeeper": "2.2.0"
  67. }
  68. }