package.json 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "vue-ts-vite-esc",
  3. "version": "0.0.0",
  4. "license": "MIT",
  5. "scripts": {
  6. "dev": "vite --host=0.0.0.0",
  7. "build": "vite build",
  8. "validate:types": "vue-tsc --noEmit",
  9. "serve": "vite preview",
  10. "test": "vitest run --silent",
  11. "test:watch": "vitest",
  12. "test:e2e:wsl": "env LIBGL_ALWAYS_INDIRECT=1 DISPLAY=:0 npm run test:e2e",
  13. "test:e2e": "env CYPRESS_TEST=true concurrently -r \"npm run dev\" \"cypress open\"",
  14. "test:e2e:headless": "env CYPRESS_TEST=true concurrently -k -r -s first \"npm run dev\" \"cypress run\"",
  15. "coverage": "npm run test -- --coverage",
  16. "lint": "eslint --ext .js,.vue,.ts --ignore-path .gitignore --fix src",
  17. "format": "prettier . --write"
  18. },
  19. "dependencies": {
  20. "@headlessui/vue": "^1.7.20",
  21. "@heroicons/vue": "^2.1.3",
  22. "@popperjs/core": "^2.11.8",
  23. "@vicons/ionicons5": "^0.12.0",
  24. "@vitejs/plugin-vue-jsx": "^4.0.1",
  25. "@vueuse/core": "^11.2.0",
  26. "alova": "^3.2.0",
  27. "body-scroll-lock": "^4.0.0-beta.0",
  28. "pinia": "^2.1.7",
  29. "sortablejs-vue3": "^1.2.11",
  30. "vue": "^3.4.23",
  31. "vue-router": "^4.3.2"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "^7.24.4",
  35. "@babel/preset-env": "^7.24.7",
  36. "@babel/types": "^7.24.9",
  37. "@badeball/cypress-cucumber-preprocessor": "^20.0.3",
  38. "@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
  39. "@cypress/browserify-preprocessor": "^3.0.2",
  40. "@cypress/code-coverage": "^3.12.35",
  41. "@cypress/vite-dev-server": "^5.0.7",
  42. "@cypress/vue": "^6.0.0",
  43. "@pinia/testing": "^0.1.3",
  44. "@tailwindcss/aspect-ratio": "^0.4.2",
  45. "@tailwindcss/forms": "^0.5.7",
  46. "@tailwindcss/typography": "^0.5.12",
  47. "@types/node": "^20.12.7",
  48. "@typescript-eslint/eslint-plugin": "^7.7.0",
  49. "@typescript-eslint/parser": "^7.7.0",
  50. "@vicons/fa": "^0.12.0",
  51. "@vitejs/plugin-vue": "^5.0.4",
  52. "@vitest/coverage-v8": "^1.6.0",
  53. "@vitest/ui": "^1.6.0",
  54. "@vue/compiler-dom": "^3.4.23",
  55. "@vue/compiler-sfc": "^3.4.23",
  56. "@vue/server-renderer": "^3.4.33",
  57. "@vue/test-utils": "^2.4.5",
  58. "autoprefixer": "^10.4.19",
  59. "babel-loader": "^9.1.3",
  60. "c8": "^9.1.0",
  61. "concurrently": "^8.2.2",
  62. "cypress": "^13.15.0",
  63. "esbuild": "^0.20.2",
  64. "eslint": "^8.57.0",
  65. "eslint-config-prettier": "^9.1.0",
  66. "eslint-plugin-vue": "^9.25.0",
  67. "happy-dom": "^14.7.1",
  68. "naive-ui": "^2.38.1",
  69. "postcss": "^8.4.38",
  70. "postcss-import": "^16.1.0",
  71. "postcss-scss": "^4.0.9",
  72. "prettier": "^3.2.5",
  73. "sass": "^1.75.0",
  74. "stylelint": "^16.3.1",
  75. "stylelint-config-recommended": "^14.0.0",
  76. "tailwindcss": "^3.4.3",
  77. "typescript": "^5.4.5",
  78. "vfonts": "^0.0.3",
  79. "vite": "^5.2.10",
  80. "vite-plugin-istanbul": "^6.0.0",
  81. "vite-tsconfig-paths": "^4.3.2",
  82. "vitest": "^1.6.0",
  83. "vue-tsc": "^2.0.26",
  84. "webpack": "^5.91.0"
  85. }
  86. }