Jiaxin sugar
2023-10-31 295f7eef1a8063d9caced92971415ac051200381
提交 | 用户 | age
2f6253 1 {
de5bf7 2   "name": "vben-admin",
fa5803 3   "version": "2.10.1",
5e9946 4   "homepage": "https://github.com/vbenjs/vue-vben-admin",
ab7448 5   "bugs": {
5e9946 6     "url": "https://github.com/vbenjs/vue-vben-admin/issues"
ab7448 7   },
V 8   "repository": {
9     "type": "git",
5e9946 10     "url": "git+https://github.com/vbenjs/vue-vben-admin.git"
ab7448 11   },
V 12   "license": "MIT",
e15737 13   "author": {
V 14     "name": "vben",
15     "email": "anncwb@126.com",
16     "url": "https://github.com/anncwb"
17   },
2f6253 18   "scripts": {
999965 19     "bootstrap": "pnpm install",
6e716c 20     "build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build",
21     "build:analyze": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode analyze",
c659c1 22     "build:docker": "vite build --mode docker",
b5bdb5 23     "build:no-cache": "pnpm store prune && npm run build",
6e716c 24     "build:test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 pnpm vite build --mode test",
ba2415 25     "commit": "czg",
5e9946 26     "dev": "pnpm vite",
ba2415 27     "preinstall": "npx only-allow pnpm",
V 28     "postinstall": "turbo run stub",
5e4be0 29     "lint": "turbo run lint",
f6fe1d 30     "lint:eslint": "eslint --cache --max-warnings 0  \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
5e9946 31     "lint:prettier": "prettier --write .",
c6e135 32     "lint:stylelint": "stylelint \"**/*.{vue,css,less,scss}\" --fix --cache --cache-location node_modules/.cache/stylelint/",
81cf44 33     "prepare": "husky install",
ba2415 34     "preview": "npm run build && vite preview",
V 35     "reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
36     "serve": "npm run dev",
37     "test:gzip": "npx http-server dist --cors --gzip -c-1",
38     "type:check": "vue-tsc --noEmit --skipLibCheck"
ab7448 39   },
V 40   "lint-staged": {
41     "*.{js,jsx,ts,tsx}": [
ba2415 42       "prettier --write",
V 43       "eslint --fix"
ab7448 44     ],
V 45     "{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
46       "prettier --write--parser json"
47     ],
48     "package.json": [
49       "prettier --write"
50     ],
51     "*.vue": [
52       "prettier --write",
ba2415 53       "eslint --fix",
ab7448 54       "stylelint --fix"
V 55     ],
56     "*.{scss,less,styl,html}": [
ba2415 57       "prettier --write",
V 58       "stylelint --fix"
ab7448 59     ],
V 60     "*.md": [
61       "prettier --write"
62     ]
63   },
64   "config": {
65     "commitizen": {
66       "path": "node_modules/cz-git"
67     }
68   },
2f6253 69   "dependencies": {
ae09d3 70     "@ant-design/icons-vue": "^6.1.0",
1262e1 71     "@iconify/iconify": "^3.1.1",
ae09d3 72     "@logicflow/core": "^1.2.9",
IW 73     "@logicflow/extension": "^1.2.9",
279977 74     "@vben/hooks": "workspace:*",
1262e1 75     "@vue/shared": "^3.3.4",
ae09d3 76     "@vueuse/core": "^10.2.1",
IW 77     "@vueuse/shared": "^10.2.1",
78     "@zxcvbn-ts/core": "^3.0.2",
1a5bed 79     "ant-design-vue": "^4.0.5",
ae09d3 80     "axios": "^1.4.0",
IW 81     "codemirror": "^5.65.12",
82     "cropperjs": "^1.5.13",
98749e 83     "crypto-js": "^4.1.1",
ae09d3 84     "dayjs": "^1.11.9",
d30fd1 85     "driver.js": "^1.3.0",
ae09d3 86     "echarts": "^5.4.2",
6753e2 87     "exceljs": "^4.3.0",
9a7102 88     "lodash-es": "^4.17.21",
2f6253 89     "mockjs": "^1.1.0",
90     "nprogress": "^0.2.0",
84a5fc 91     "path-to-regexp": "^6.2.1",
ae09d3 92     "pinia": "2.1.4",
2152b3 93     "pinia-plugin-persistedstate": "^3.2.0",
2f9989 94     "print-js": "^1.6.0",
1262e1 95     "qrcode": "^1.5.3",
X 96     "qs": "^6.11.2",
cdb10c 97     "resize-observer-polyfill": "^1.5.1",
9d4d78 98     "showdown": "^2.1.0",
823f7b 99     "sortablejs": "^1.15.0",
ae09d3 100     "tinymce": "^5.10.7",
IW 101     "vditor": "^3.9.4",
1262e1 102     "vue": "^3.3.4",
ae09d3 103     "vue-i18n": "^9.2.2",
84a5fc 104     "vue-json-pretty": "^2.2.4",
ae09d3 105     "vue-router": "^4.2.3",
IW 106     "vue-types": "^5.1.0",
ab7448 107     "vuedraggable": "^4.1.0",
ae09d3 108     "vxe-table": "^4.4.5",
IW 109     "vxe-table-plugin-export-xlsx": "^3.0.4",
110     "xe-utils": "^3.5.11",
ab7448 111     "xlsx": "^0.18.5"
2f6253 112   },
113   "devDependencies": {
ae09d3 114     "@commitlint/cli": "^17.6.6",
IW 115     "@commitlint/config-conventional": "^17.6.6",
116     "@iconify/json": "^2.2.87",
84a5fc 117     "@purge-icons/generated": "^0.9.0",
ae09d3 118     "@types/codemirror": "^5.60.8",
IW 119     "@types/crypto-js": "^4.1.1",
120     "@types/lodash-es": "^4.17.7",
121     "@types/mockjs": "^1.0.7",
122     "@types/nprogress": "^0.2.0",
123     "@types/qrcode": "^1.5.1",
124     "@types/qs": "^6.9.7",
125     "@types/showdown": "^2.0.1",
126     "@types/sortablejs": "^1.15.1",
ba2415 127     "@vben/eslint-config": "workspace:*",
V 128     "@vben/stylelint-config": "workspace:*",
08d4e3 129     "@vben/ts-config": "workspace:*",
14ba72 130     "@vben/types": "workspace:*",
5e9946 131     "@vben/vite-config": "workspace:*",
1262e1 132     "@vue/compiler-sfc": "^3.3.4",
ae09d3 133     "@vue/test-utils": "^2.4.0",
c303ec 134     "cross-env": "^7.0.3",
ae09d3 135     "cz-git": "^1.6.1",
IW 136     "czg": "^1.6.1",
84a5fc 137     "husky": "^8.0.3",
ae09d3 138     "lint-staged": "13.2.3",
IW 139     "prettier": "^2.8.8",
140     "prettier-plugin-packagejson": "^2.4.4",
141     "rimraf": "^5.0.1",
142     "turbo": "^1.10.7",
143     "typescript": "^5.1.6",
144     "unbuild": "^1.2.1",
145     "vite": "^4.4.0",
146     "vite-plugin-mock": "^2.9.6",
147     "vue-tsc": "^1.8.4"
2f6253 148   },
ae09d3 149   "packageManager": "pnpm@8.1.0",
2f6253 150   "engines": {
ab7448 151     "node": ">=16.15.1",
8a27f5 152     "pnpm": ">=8.1.0"
2f6253 153   }
154 }