package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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. "@testing-library/cypress": "^10.0.3",
  18. "@types/adm-zip": "^0.5.7",
  19. "@types/uuid": "^9.0.8",
  20. "adm-zip": "^0.5.12",
  21. "body-parser": "^1.20.3",
  22. "cypress": "13.13.2",
  23. "cypress-multi-reporters": "^2.0.5",
  24. "express": "^4.21.2",
  25. "isomorphic-git": "^1.33.1",
  26. "js-yaml": "^4.1.1",
  27. "mocha-junit-reporter": "^2.2.1",
  28. "pdf-parse": "^2.3.0",
  29. "uuid": "^9.0.1",
  30. "zod-validation-error": "^4.0.1"
  31. }
  32. }