package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "pdf_tech_front_end",
  3. "version": "0.0.0",
  4. "scripts": {
  5. "dev": "vite",
  6. "build": "vite build",
  7. "preview": "vite preview --port 4173",
  8. "test:unit": "vitest --environment jsdom",
  9. "test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
  10. "test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
  11. "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
  12. },
  13. "dependencies": {
  14. "axios": "^1.2.1",
  15. "pinia": "^2.0.16",
  16. "vue": "^2.7.7",
  17. "vue-router": "^3.5.4"
  18. },
  19. "devDependencies": {
  20. "@rushstack/eslint-patch": "^1.1.0",
  21. "@vitejs/plugin-legacy": "^2.0.0",
  22. "@vitejs/plugin-vue2": "^1.1.2",
  23. "@vue/eslint-config-prettier": "^7.0.0",
  24. "@vue/test-utils": "^1.3.0",
  25. "cypress": "^10.3.0",
  26. "eslint": "^8.5.0",
  27. "eslint-plugin-cypress": "^2.12.1",
  28. "eslint-plugin-vue": "^9.0.0",
  29. "jsdom": "^20.0.0",
  30. "prettier": "^2.5.1",
  31. "start-server-and-test": "^1.14.0",
  32. "terser": "^5.14.2",
  33. "vite": "^3.0.2",
  34. "vite-plugin-eslint": "^1.8.1",
  35. "vitest": "^0.18.1",
  36. "vue-template-compiler": "^2.7.7"
  37. }
  38. }