package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@4dkankan/helperweb",
  3. "description": " xxx",
  4. "type": "module",
  5. "version": "0.0.2",
  6. "private": true,
  7. "keywords": [
  8. "typescript",
  9. "vue3",
  10. "starter",
  11. "template"
  12. ],
  13. "scripts": {
  14. "dev": "vite",
  15. "build": "run-p typecheck \"build-only {@}\" --",
  16. "preview": "vite preview",
  17. "test:unit": "vitest",
  18. "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
  19. "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
  20. "build-only": "vite build",
  21. "typecheck": "vue-tsc --build --force",
  22. "lint": "eslint . --fix",
  23. "format": "prettier --write src/"
  24. },
  25. "dependencies": {
  26. "@unocss/core": "^65.4.0",
  27. "@unocss/vite": "^65.4.0",
  28. "@vicons/ionicons5": "^0.13.0",
  29. "nativeui": "^0.0.0",
  30. "unocss": "^0.65.1",
  31. "vue": "^3.5.13",
  32. "vue-i18n": "^11.0.1",
  33. "vue-router": "^4.5.0"
  34. },
  35. "devDependencies": {
  36. "@tsconfig/node22": "^22.0.0",
  37. "@types/jsdom": "^21.1.7",
  38. "@types/node": "^22.10.5",
  39. "@vitejs/plugin-vue": "^5.2.1",
  40. "@vitest/eslint-plugin": "1.1.24",
  41. "@vue/eslint-config-prettier": "^10.1.0",
  42. "@vue/eslint-config-typescript": "^14.2.0",
  43. "@vue/test-utils": "^2.4.6",
  44. "@vue/tsconfig": "^0.7.0",
  45. "cypress": "^13.17.0",
  46. "eslint": "^9.17.0",
  47. "eslint-plugin-cypress": "^4.1.0",
  48. "eslint-plugin-vue": "^9.32.0",
  49. "jsdom": "^25.0.1",
  50. "npm-run-all2": "^7.0.2",
  51. "prettier": "^3.4.2",
  52. "start-server-and-test": "^2.0.9",
  53. "typescript": "~5.7.2",
  54. "unplugin-auto-import": "^19.0.0",
  55. "unplugin-vue-components": "^28.0.0",
  56. "unplugin-vue-router": "^0.10.9",
  57. "vite": "^6.0.7",
  58. "vite-plugin-vue-layouts": "^0.11.0",
  59. "vitest": "^2.1.8",
  60. "vue-tsc": "^2.2.0"
  61. }
  62. }