package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@overleaf/server-ce-test",
  3. "description": "e2e tests for Overleaf Community Edition",
  4. "private": true,
  5. "type": "module",
  6. "scripts": {
  7. "cypress:open": "cypress open --e2e --browser chrome",
  8. "cypress:run": "cypress run --e2e --browser chrome",
  9. "format": "prettier --list-different $PWD/'**/*.{js,mjs,ts,tsx}'",
  10. "format:fix": "prettier --write $PWD/'**/*.{js,mjs,ts,tsx}'",
  11. "lint": "eslint --max-warnings 0 --format unix --ext .js,.jsx,.mjs,.ts,.tsx .",
  12. "lint:fix": "eslint --fix --ext .js,.jsx,.mjs,.ts,.tsx ."
  13. },
  14. "devDependencies": {
  15. "@isomorphic-git/lightning-fs": "^4.6.0",
  16. "@overleaf/validation-tools": "*",
  17. "@overleaf/promise-utils": "*",
  18. "@testing-library/cypress": "^10.0.3",
  19. "@types/adm-zip": "^0.5.7",
  20. "@types/uuid": "^9.0.8",
  21. "adm-zip": "^0.5.12",
  22. "body-parser": "^1.20.3",
  23. "cypress": "13.13.2",
  24. "cypress-multi-reporters": "^2.0.5",
  25. "express": "^4.21.2",
  26. "isomorphic-git": "^1.33.1",
  27. "js-yaml": "^4.1.1",
  28. "mocha-junit-reporter": "^2.2.1",
  29. "pdf-parse": "^2.3.0",
  30. "uuid": "^9.0.1",
  31. "zod-validation-error": "^4.0.1"
  32. }
  33. }