package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 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": "node --watch app.js",
  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. "types:check": "tsc --noEmit"
  18. },
  19. "dependencies": {
  20. "@overleaf/fetch-utils": "*",
  21. "@overleaf/logger": "*",
  22. "@overleaf/metrics": "*",
  23. "@overleaf/o-error": "*",
  24. "@overleaf/promise-utils": "*",
  25. "@overleaf/settings": "*",
  26. "archiver": "5.3.2",
  27. "async": "^3.2.5",
  28. "body-parser": "^1.20.3",
  29. "bunyan": "^1.8.15",
  30. "dockerode": "^4.0.7",
  31. "express": "^4.21.2",
  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.0.9",
  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. "mock-fs": "^5.1.2",
  44. "node-fetch": "^2.7.0",
  45. "sandboxed-module": "^2.0.4",
  46. "sinon": "~9.0.1",
  47. "sinon-chai": "^3.7.0",
  48. "timekeeper": "2.2.0",
  49. "typescript": "^5.0.4"
  50. }
  51. }