package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
  11. "test:unit:_run": "vitest --config ./vitest.config.unit.cjs",
  12. "test:unit": "npm run test:unit:_run",
  13. "nodemon": "node --watch app.js",
  14. "lint": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --max-warnings 0 --format unix .",
  15. "lint:fix": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --fix .",
  16. "types:check": "tsc --noEmit"
  17. },
  18. "dependencies": {
  19. "@overleaf/fetch-utils": "*",
  20. "@overleaf/logger": "*",
  21. "@overleaf/metrics": "*",
  22. "@overleaf/o-error": "*",
  23. "@overleaf/promise-utils": "*",
  24. "@overleaf/settings": "*",
  25. "@overleaf/stream-utils": "*",
  26. "archiver": "5.3.2",
  27. "async": "^3.2.5",
  28. "body-parser": "1.20.4",
  29. "bunyan": "^1.8.15",
  30. "dockerode": "^4.0.9",
  31. "express": "4.22.1",
  32. "lodash": "^4.17.21",
  33. "overleaf-editor-core": "*",
  34. "p-limit": "^3.1.0",
  35. "request": "2.88.2",
  36. "send": "^0.19.0",
  37. "tar-fs": "^3.1.1",
  38. "workerpool": "^6.1.5"
  39. },
  40. "devDependencies": {
  41. "@istanbuljs/esm-loader-hook": "^0.3.0",
  42. "chai": "^4.3.6",
  43. "chai-as-promised": "^7.1.1",
  44. "mocha": "^11.1.0",
  45. "mocha-junit-reporter": "^2.2.1",
  46. "mocha-multi-reporters": "^1.5.1",
  47. "mock-fs": "^5.1.2",
  48. "node-fetch": "^2.7.0",
  49. "nyc": "^17.1.0",
  50. "sinon": "~9.0.1",
  51. "sinon-chai": "^3.7.0",
  52. "timekeeper": "2.2.0",
  53. "typescript": "^5.0.4",
  54. "vitest": "^4.0.0"
  55. }
  56. }