123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "download-webiste",
- "type": "module",
- "version": "0.0.0",
- "private": true,
- "scripts": {
- "dev": "vite --base download",
- "build": "vue-tsc && vite build --base plug",
- "preview": "vite preview",
- "lint": "eslint --cache .",
- "lint:fix": "eslint --cache . --fix",
- "stylelint": "stylelint --cache .",
- "stylelint:fix": "stylelint --cache . --fix",
- "test": "vitest",
- "prepare": "husky",
- "commit": "cz"
- },
- "dependencies": {
- "@vue/reactivity": "^3.4.20",
- "@vue/shared": "^3.4.20",
- "@vueuse/core": "^10.11.0",
- "axios": "^1.6.7",
- "element-plus": "^2.9.1",
- "normalize.css": "^8.0.1",
- "pinia": "^2.1.7",
- "sass": "^1.71.0",
- "vue": "^3.4.15",
- "vue-router": "4"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^2.6.4",
- "@commitlint/cli": "^18.6.1",
- "@commitlint/config-conventional": "^18.6.2",
- "@iconify-json/carbon": "^1.1.36",
- "@types/node": "^20.11.19",
- "@unocss/preset-icons": "^0.61.3",
- "@vitejs/plugin-vue": "^5.0.3",
- "commitizen": "^4.3.0",
- "cz-conventional-changelog": "^3.3.0",
- "eslint": "^8.56.0",
- "husky": "^9.0.11",
- "stylelint": "^16.6.1",
- "stylelint-config-recommended-scss": "^14.0.0",
- "stylelint-config-recommended-vue": "^1.5.0",
- "stylelint-config-standard": "^36.0.0",
- "stylelint-config-standard-scss": "^13.1.0",
- "stylelint-scss": "^6.3.1",
- "typescript": "^5.2.2",
- "unocss": "^0.58.5",
- "unplugin-auto-import": "^0.17.5",
- "unplugin-vue-components": "^0.26.0",
- "vite": "^5.1.0",
- "vitest": "^1.3.0",
- "vue-tsc": "^1.8.27"
- },
- "lint-staged": {
- "*.{js,ts,tsx,vue,md}": [
- "eslint --cache --fix"
- ],
- "**/*.{vue,css,scss,html}": [
- "stylelint --cache --fix"
- ]
- },
- "config": {
- "commitizen": {
- "path": "./node_modules/cz-conventional-changelog"
- }
- }
- }
|