package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "child-app",
  3. "private": true,
  4. "version": "0.0.1",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vue-tsc && vite build",
  9. "preview": "vite preview",
  10. "test:e2e": "cypress run",
  11. "test:unit": "vitest",
  12. "lint": "eslint ."
  13. },
  14. "dependencies": {
  15. "@capacitor/app": "6.0.2",
  16. "@capacitor/core": "6.2.0",
  17. "@capacitor/haptics": "6.0.2",
  18. "@capacitor/keyboard": "6.0.3",
  19. "@capacitor/status-bar": "6.0.2",
  20. "@ionic/vue": "^8.0.0",
  21. "@ionic/vue-router": "^8.0.0",
  22. "ionicons": "^7.0.0",
  23. "vue": "^3.3.0",
  24. "vue-router": "^4.2.0"
  25. },
  26. "devDependencies": {
  27. "@capacitor/cli": "6.2.0",
  28. "@vitejs/plugin-legacy": "^5.0.0",
  29. "@vitejs/plugin-vue": "^4.0.0",
  30. "@vue/eslint-config-typescript": "^12.0.0",
  31. "@vue/test-utils": "^2.3.0",
  32. "cypress": "^13.5.0",
  33. "eslint": "^8.35.0",
  34. "eslint-plugin-vue": "^9.9.0",
  35. "jsdom": "^22.1.0",
  36. "terser": "^5.4.0",
  37. "typescript": "^5.1.6",
  38. "vite": "~5.2.0",
  39. "vitest": "^0.34.6",
  40. "vue-tsc": "^2.0.22"
  41. },
  42. "description": "An Ionic project"
  43. }