package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "vite-project",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "vue-tsc -b && vite build",
  9. "preview": "vite preview",
  10. "lint:style fix": "stylelint '**/*.{css,scss,vue}' --fix",
  11. "lint": "eslint .",
  12. "lint:style": "stylelint '**/*.{css,scss,vue}'",
  13. "format": "prettier --write .",
  14. "prepare": "husky"
  15. },
  16. "husky": {
  17. "hooks": {
  18. "pre-commit": "pnpm run lint:style && pnpm run format"
  19. }
  20. },
  21. "dependencies": {
  22. "vue": "^3.5.12"
  23. },
  24. "devDependencies": {
  25. "@eslint/js": "^9.15.0",
  26. "@types/node": "^22.9.0",
  27. "@vitejs/plugin-vue": "^5.1.4",
  28. "eslint": "9.15.0",
  29. "eslint-plugin-vue": "^9.31.0",
  30. "globals": "^15.12.0",
  31. "husky": "^9.1.7",
  32. "postcss": "8.4.49",
  33. "postcss-html": "1.7.0",
  34. "postcss-scss": "4.0.9",
  35. "prettier": "3.3.3",
  36. "sass": "1.81.0",
  37. "stylelint": "16.10.0",
  38. "stylelint-config-prettier": "9.0.5",
  39. "stylelint-config-recommended-scss": "14.1.0",
  40. "stylelint-config-standard": "36.0.1",
  41. "stylelint-config-standard-scss": "13.1.0",
  42. "stylelint-config-standard-vue": "1.0.0",
  43. "stylelint-order": "6.0.4",
  44. "stylelint-scss": "6.9.0",
  45. "typescript": "~5.6.2",
  46. "typescript-eslint": "^8.15.0",
  47. "vite": "^5.4.10",
  48. "vue-tsc": "^2.1.8"
  49. }
  50. }