package.json 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. {
  2. "name": "vite-vue-proste",
  3. "private": true,
  4. "version": "1.0.0",
  5. "packageManager": "pnpm@8.2.0",
  6. "scripts": {
  7. "dev": "vite",
  8. "dev:e2e": "cross-env IS_E2E=true vite",
  9. "build": "vue-tsc --noEmit && vite build",
  10. "preview": "vite preview",
  11. "test": "vitest",
  12. "cypress:run": "cypress run -b chrome",
  13. "cypress": "cypress open",
  14. "lint:style": "stylelint packages/app/src *.*.css",
  15. "lint:js": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
  16. "lint:style-fix": "npm run lint:style --fix",
  17. "lint:js-fix": "npm run lint:js --fix",
  18. "prepare": "husky install",
  19. "postinstall": "husky install",
  20. "pre-commit": "lint-staged",
  21. "commit": "cz"
  22. },
  23. "config": {
  24. "commitizen": {
  25. "path": "./node_modules/cz-conventional-changelog",
  26. "types": {
  27. "feat": {
  28. "description": "A new feature",
  29. "title": "Features"
  30. },
  31. "fix": {
  32. "description": "A bug fix",
  33. "title": "Bug Fixes"
  34. },
  35. "update": {
  36. "description": "Modify src files",
  37. "title": "Updates"
  38. },
  39. "chore": {
  40. "description": "Other changes that don't modify src or test files",
  41. "title": "Chores"
  42. },
  43. "test": {
  44. "description": "Adding missing tests or correcting existing tests",
  45. "title": "Tests"
  46. },
  47. "style": {
  48. "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
  49. "title": "Styles"
  50. },
  51. "refactor": {
  52. "description": "A code change that neither fixes a bug nor adds a feature",
  53. "title": "Code Refactoring"
  54. },
  55. "perf": {
  56. "description": "A code change that improves performance",
  57. "title": "Performance Improvements"
  58. },
  59. "revert": {
  60. "description": "Reverts a previous commit",
  61. "title": "Reverts"
  62. },
  63. "merge": {
  64. "description": "Merge branch",
  65. "title": "Merges"
  66. }
  67. }
  68. }
  69. },
  70. "lint-staged": {
  71. "**/*/*.css": [
  72. "stylelint"
  73. ],
  74. "**/*/*.{js,jsx,ts,tsx,vue}": [
  75. "eslint"
  76. ]
  77. },
  78. "dependencies": {
  79. "@icon-park/vue-next": "^1.4.2",
  80. "@imengyu/vue3-context-menu": "^1.2.6",
  81. "@tanstack/vue-query": "^4.29.7",
  82. "@vee-validate/zod": "^4.9.3",
  83. "@vueuse/core": "^10.1.2",
  84. "@vueuse/integrations": "^10.1.2",
  85. "axios": "^1.4.0",
  86. "classnames": "^2.3.2",
  87. "dayjs": "^1.11.7",
  88. "klona": "^2.0.6",
  89. "lodash-es": "^4.17.21",
  90. "lottie-web": "^5.11.0",
  91. "naive-ui": "^2.34.3",
  92. "pinia": "^2.0.36",
  93. "sortablejs": "^1.15.0",
  94. "veboundary": "1.2.2",
  95. "vee-validate": "^4.9.3",
  96. "vue": "^3.3.2",
  97. "vue-final-modal": "^4.4.2",
  98. "vue-i18n": "^9.2.2",
  99. "vue-router": "^4.2.0",
  100. "zod": "^3.21.4"
  101. },
  102. "devDependencies": {
  103. "@commitlint/cli": "^17.6.3",
  104. "@commitlint/config-conventional": "^17.6.3",
  105. "@nabla/vite-plugin-eslint": "^1.5.0",
  106. "@total-typescript/ts-reset": "^0.4.2",
  107. "@types/lodash-es": "^4.17.7",
  108. "@types/node": "20.1.4",
  109. "@types/rollup-plugin-visualizer": "^4.2.1",
  110. "@types/sortablejs": "^1.15.1",
  111. "@typescript-eslint/eslint-plugin": "^5.59.5",
  112. "@typescript-eslint/parser": "^5.59.5",
  113. "@vitejs/plugin-vue": "^4.2.3",
  114. "@vitejs/plugin-vue-jsx": "^3.0.1",
  115. "@vue/test-utils": "^2.3.2",
  116. "browserslist-to-esbuild": "^1.2.0",
  117. "commitizen": "^4.3.0",
  118. "cross-env": "^7.0.3",
  119. "cypress": "^12.12.0",
  120. "cz-conventional-changelog": "^3.3.0",
  121. "editorconfig": "^1.0.2",
  122. "eslint": "^8.40.0",
  123. "eslint-config-prettier": "^8.8.0",
  124. "eslint-config-proste": "^7.4.0",
  125. "eslint-plugin-cypress": "^2.13.3",
  126. "eslint-plugin-import": "^2.27.5",
  127. "eslint-plugin-import-newlines": "^1.3.1",
  128. "eslint-plugin-vue": "^9.13.0",
  129. "husky": "^8.0.3",
  130. "jsdom": "^22.0.0",
  131. "lint-staged": "^13.2.2",
  132. "postcss": "^8.4.23",
  133. "postcss-nesting": "^11.2.2",
  134. "postcss-preset-env": "^8.3.2",
  135. "prettier": "^2.8.8",
  136. "rollup-plugin-visualizer": "^5.9.0",
  137. "stylelint": "^15.6.1",
  138. "stylelint-config-recess-order": "^4.0.0",
  139. "stylelint-config-standard": "^33.0.0",
  140. "typescript": "^5.0.4",
  141. "vite": "^4.3.5",
  142. "vitest": "^0.31.0",
  143. "vue-eslint-parser": "^9.3.0",
  144. "vue-tsc": "^1.6.5"
  145. },
  146. "browserslist": {
  147. "production": [
  148. ">= 5%",
  149. "not dead",
  150. "not op_mini all",
  151. "not ie <= 11"
  152. ],
  153. "development": [
  154. "last 1 chrome version",
  155. "last 1 firefox version",
  156. "last 1 safari version"
  157. ]
  158. }
  159. }