Files
HuLa-Admin/package.json

132 lines
4.2 KiB
JSON

{
"name": "hula-vue3",
"private": true,
"version": "v1.2.0-beta",
"packageManager": "pnpm@8.14.1",
"type": "module",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.10.0"
},
"author": {
"name": "nongyehong",
"email": "2439646234@qq.com",
"url": "https://xxxx/xxx"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"oxlint src",
"prettier --config .prettierrc --write",
"eslint src"
]
},
"scripts": {
"dev": "vite --mode dev",
"prod": "vite --mode prod",
"build:dev": "vite build --mode dev",
"build:prod": "vite build --mode prod",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
"lint:eslint": "eslint --cache --max-warnings 0 {src,build}/**/*.{vue,js,ts,tsx} --fix",
"lint:prettier": "prettier --write src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}",
"lint:stylelint": "stylelint --cache --fix **/*.{html,vue,css,scss} --cache --cache-location node_modules/.cache/stylelint/",
"fix": "eslint --ext .js,.jsx,.ts,.vue src --fix",
"preinstall": "npx only-allow pnpm",
"commit": "git add . && lint-staged && git-cz && conventional-changelog -p cz-config.js -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -p cz-config.js -i CHANGELOG.md -s -r 0",
"lint:staged": "lint-staged"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^5.0.1",
"@intlify/unplugin-vue-i18n": "^0.11.0",
"@types/crypto-js": "^4.2.2",
"@vicons/ionicons5": "^0.13.0",
"@vicons/tabler": "^0.12.0",
"@vueuse/core": "^10.11.1",
"animate.css": "^4.1.1",
"axios": "^1.13.2",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"echarts": "5.4.1",
"encryptlong": "^3.1.4",
"hotkeys-js": "^3.13.15",
"jsencrypt": "^3.5.4",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"naive-ui": "^2.43.1",
"notiflix": "^3.2.8",
"pinia": "^2.3.1",
"pinia-plugin-persistedstate": "^3.2.3",
"screenfull": "^6.0.2",
"vue": "^3.5.24",
"vue-drag-resize": "^1.5.4",
"vue-i18n": "^9.14.5",
"vue-router": "^4.6.3",
"vue3-count-to": "^1.1.2",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/ui": "^0.32.4",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.22",
"commitizen": "^4.3.1",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.5.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^9.33.0",
"lint-staged": "^14.0.1",
"only-allow": "^1.2.1",
"oxlint": "^0.2.18",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^5.14.0",
"sass": "^1.94.0",
"sass-loader": "^14.2.1",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^5.3.2",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"unplugin-auto-import": "^0.17.8",
"unplugin-vue-components": "^0.26.0",
"vite": "7.2.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vue-devtools": "^7.7.8",
"vitest": "^0.32.4",
"vue-tsc": "^1.8.27"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/cz-config.cjs"
}
}
}