package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "vue-ts-vite-esc",
  3. "version": "0.0.0",
  4. "license": "MIT",
  5. "scripts": {
  6. "dev": "vite",
  7. "build": "npm run validate:types && 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. "body-scroll-lock": "^4.0.0-beta.0",
  25. "pinia": "^2.1.7",
  26. "vue": "^3.4.23",
  27. "vue-router": "^4.3.2"
  28. },
  29. "devDependencies": {
  30. "@babel/core": "^7.24.4",
  31. "@babel/preset-env": "^7.24.7",
  32. "@babel/types": "^7.24.9",
  33. "@badeball/cypress-cucumber-preprocessor": "^20.0.3",
  34. "@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
  35. "@cypress/browserify-preprocessor": "^3.0.2",
  36. "@cypress/code-coverage": "^3.12.35",
  37. "@cypress/vite-dev-server": "^5.0.7",
  38. "@cypress/vue": "^6.0.0",
  39. "@pinia/testing": "^0.1.3",
  40. "@tailwindcss/aspect-ratio": "^0.4.2",
  41. "@tailwindcss/forms": "^0.5.7",
  42. "@tailwindcss/typography": "^0.5.12",
  43. "@types/node": "^20.12.7",
  44. "@typescript-eslint/eslint-plugin": "^7.7.0",
  45. "@typescript-eslint/parser": "^7.7.0",
  46. "@vicons/fa": "^0.12.0",
  47. "@vitejs/plugin-vue": "^5.0.4",
  48. "@vitest/coverage-v8": "^1.6.0",
  49. "@vitest/ui": "^1.6.0",
  50. "@vue/compiler-dom": "^3.4.23",
  51. "@vue/compiler-sfc": "^3.4.23",
  52. "@vue/server-renderer": "^3.4.33",
  53. "@vue/test-utils": "^2.4.5",
  54. "autoprefixer": "^10.4.19",
  55. "babel-loader": "^9.1.3",
  56. "c8": "^9.1.0",
  57. "concurrently": "^8.2.2",
  58. "cypress": "^13.8.0",
  59. "esbuild": "^0.20.2",
  60. "eslint": "^8.57.0",
  61. "eslint-config-prettier": "^9.1.0",
  62. "eslint-plugin-vue": "^9.25.0",
  63. "happy-dom": "^14.7.1",
  64. "naive-ui": "^2.38.1",
  65. "postcss": "^8.4.38",
  66. "postcss-import": "^16.1.0",
  67. "postcss-scss": "^4.0.9",
  68. "prettier": "^3.2.5",
  69. "sass": "^1.75.0",
  70. "stylelint": "^16.3.1",
  71. "stylelint-config-recommended": "^14.0.0",
  72. "tailwindcss": "^3.4.3",
  73. "typescript": "^5.4.5",
  74. "vfonts": "^0.0.3",
  75. "vite": "^5.2.10",
  76. "vite-plugin-istanbul": "^6.0.0",
  77. "vite-tsconfig-paths": "^4.3.2",
  78. "vitest": "^1.6.0",
  79. "vue-tsc": "^2.0.26",
  80. "webpack": "^5.91.0"
  81. }
  82. }