package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 $@ 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 --max-warnings 0 --format unix .",
  15. "lint:fix": "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. "p-limit": "^3.1.0",
  34. "request": "2.88.2",
  35. "send": "^0.19.0",
  36. "tar-fs": "^3.1.1",
  37. "workerpool": "^6.1.5"
  38. },
  39. "devDependencies": {
  40. "chai": "^4.3.6",
  41. "chai-as-promised": "^7.1.1",
  42. "mocha": "^11.1.0",
  43. "mocha-junit-reporter": "^2.2.1",
  44. "mocha-multi-reporters": "^1.5.1",
  45. "mock-fs": "^5.1.2",
  46. "node-fetch": "^2.7.0",
  47. "sinon": "~9.0.1",
  48. "sinon-chai": "^3.7.0",
  49. "timekeeper": "2.2.0",
  50. "typescript": "^5.0.4",
  51. "vitest": "^4.0.0"
  52. }
  53. }