package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@overleaf/clsi",
  3. "description": "A Node.js implementation of the CLSI LaTeX web-API",
  4. "private": true,
  5. "main": "app.js",
  6. "scripts": {
  7. "start": "node $NODE_APP_OPTIONS app.js",
  8. "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
  9. "test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  10. "test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
  11. "test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
  12. "nodemon": "nodemon --config nodemon.json",
  13. "lint": "eslint --max-warnings 0 --format unix .",
  14. "format": "prettier --list-different $PWD/'**/*.js'",
  15. "format:fix": "prettier --write $PWD/'**/*.js'",
  16. "lint:fix": "eslint --fix ."
  17. },
  18. "dependencies": {
  19. "@overleaf/logger": "*",
  20. "@overleaf/metrics": "*",
  21. "@overleaf/o-error": "*",
  22. "@overleaf/settings": "*",
  23. "async": "3.2.2",
  24. "body-parser": "^1.19.0",
  25. "bunyan": "^1.8.15",
  26. "diskusage": "^1.1.3",
  27. "dockerode": "^3.1.0",
  28. "express": "^4.18.2",
  29. "fs-extra": "^10.0.0",
  30. "lockfile": "^1.0.4",
  31. "lodash": "^4.17.21",
  32. "p-limit": "^3.1.0",
  33. "request": "^2.88.2",
  34. "send": "^0.17.1",
  35. "workerpool": "^6.1.5"
  36. },
  37. "devDependencies": {
  38. "chai": "^4.3.6",
  39. "chai-as-promised": "^7.1.1",
  40. "mocha": "^10.2.0",
  41. "mock-fs": "^5.1.2",
  42. "sandboxed-module": "^2.0.4",
  43. "sinon": "~9.0.1",
  44. "sinon-chai": "^3.7.0",
  45. "timekeeper": "2.2.0"
  46. }
  47. }