package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.2",
  28. "body-parser": "^1.19.0",
  29. "bunyan": "^1.8.15",
  30. "diskusage": "^1.1.3",
  31. "dockerode": "^3.1.0",
  32. "express": "^4.19.2",
  33. "lodash": "^4.17.21",
  34. "p-limit": "^3.1.0",
  35. "request": "^2.88.2",
  36. "send": "^0.17.1",
  37. "workerpool": "^6.1.5"
  38. },
  39. "devDependencies": {
  40. "@types/workerpool": "^6.1.0",
  41. "chai": "^4.3.6",
  42. "chai-as-promised": "^7.1.1",
  43. "mocha": "^10.2.0",
  44. "mock-fs": "^5.1.2",
  45. "node-fetch": "^2.6.7",
  46. "sandboxed-module": "^2.0.4",
  47. "sinon": "~9.0.1",
  48. "sinon-chai": "^3.7.0",
  49. "timekeeper": "2.2.0",
  50. "typescript": "^5.0.4"
  51. }
  52. }