package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "type": "module",
  7. "scripts": {
  8. "start": "node app.js",
  9. "test:acceptance:_run": "mocha --recursive --timeout 15000 --exit --retries=$RETRIES $@ test/acceptance/js",
  10. "test:acceptance": "yarn run test:acceptance:_run -- --grep=$MOCHA_GREP",
  11. "test:unit:_run": "vitest --config ./vitest.config.unit.cjs",
  12. "test:unit": "yarn run test:unit:_run",
  13. "nodemon": "node --watch app.js",
  14. "lint": "eslint --cache --cache-location ../../.cache/eslint/ --max-warnings 0 --format unix .",
  15. "lint:fix": "eslint --cache --cache-location ../../.cache/eslint/ --fix .",
  16. "types:check": "tsc --noEmit"
  17. },
  18. "dependencies": {
  19. "@overleaf/fetch-utils": "workspace:*",
  20. "@overleaf/logger": "workspace:*",
  21. "@overleaf/metrics": "workspace:*",
  22. "@overleaf/o-error": "workspace:*",
  23. "@overleaf/promise-utils": "workspace:*",
  24. "@overleaf/settings": "workspace:*",
  25. "@overleaf/stream-utils": "workspace:*",
  26. "@overleaf/validation-tools": "workspace:*",
  27. "archiver": "5.3.2",
  28. "async": "^3.2.5",
  29. "body-parser": "1.20.4",
  30. "bunyan": "^1.8.15",
  31. "dockerode": "^4.0.9",
  32. "express": "4.22.1",
  33. "lodash": "^4.18.1",
  34. "minimatch": "^10.2.5",
  35. "multer": "2.1.1",
  36. "overleaf-editor-core": "workspace:*",
  37. "p-limit": "^3.1.0",
  38. "send": "^0.19.0",
  39. "tar-fs": "^3.1.1",
  40. "workerpool": "^6.1.5"
  41. },
  42. "devDependencies": {
  43. "@istanbuljs/esm-loader-hook": "^0.3.0",
  44. "chai": "^4.3.6",
  45. "chai-as-promised": "^7.1.1",
  46. "form-data": "^4.0.5",
  47. "mocha": "^11.1.0",
  48. "mocha-junit-reporter": "^2.2.1",
  49. "mocha-multi-reporters": "^1.5.1",
  50. "node-fetch": "^2.7.0",
  51. "nyc": "^17.1.0",
  52. "sinon": "~9.0.1",
  53. "sinon-chai": "^3.7.0",
  54. "timekeeper": "2.2.0",
  55. "typescript": "^5.0.4",
  56. "vitest": "4.1.5",
  57. "yauzl": "^2.10.0"
  58. }
  59. }