package.json 4.4 KB
Newer Older
陈文彬 已提交
1
{
V
vben 已提交
2
  "name": "vben-admin",
V
vben 已提交
3
  "version": "2.0.1",
陈文彬 已提交
4
  "scripts": {
V
Vben 已提交
5
    "bootstrap": "yarn install",
V
vben 已提交
6
    "serve": "vite",
V
vben 已提交
7
    "dev": "vite",
V
vben 已提交
8
    "build": "vite build && esno ./build/script/postBuild.ts",
V
vben 已提交
9
    "build:no-cache": "yarn clean:cache && npm run build",
10
    "report": "cross-env REPORT=true npm run build ",
V
vben 已提交
11 12
    "preview": "npm run build && vite preview",
    "preview:dist": "vite preview",
V
Vben 已提交
13
    "log": "conventional-changelog -p angular -i CHANGELOG.md -s",
V
vben 已提交
14
    "clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
V
Vben 已提交
15
    "clean:lib": "rimraf node_modules",
V
vben 已提交
16
    "lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
陈文彬 已提交
17
    "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
18
    "lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
V
vben 已提交
19 20
    "lint:ls-lint": "ls-lint",
    "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
V
vben 已提交
21
    "lint:pretty": "pretty-quick --staged",
22 23
    "test:gzip": "http-server dist --cors --gzip -c-1",
    "test:br": "http-server dist --cors --brotli -c-1",
V
vben 已提交
24 25
    "reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run bootstrap",
    "postinstall": "is-ci || husky install"
陈文彬 已提交
26 27
  },
  "dependencies": {
V
vben 已提交
28
    "@iconify/iconify": "^2.0.0-rc.6",
V
Vben 已提交
29
    "@vueuse/core": "^4.2.2",
V
vben 已提交
30
    "@zxcvbn-ts/core": "^0.2.0",
V
vben 已提交
31
    "ant-design-vue": "2.0.0",
V
vben 已提交
32
    "apexcharts": "^3.25.0",
V
vben 已提交
33
    "axios": "^0.21.1",
V
vben 已提交
34
    "crypto-es": "^1.2.7",
V
vben 已提交
35
    "echarts": "^5.0.2",
V
vben 已提交
36
    "lodash-es": "^4.17.21",
陈文彬 已提交
37 38
    "mockjs": "^1.1.0",
    "nprogress": "^0.2.0",
39
    "path-to-regexp": "^6.2.0",
陈文彬 已提交
40
    "qrcode": "^1.4.4",
V
vben 已提交
41
    "sortablejs": "^1.13.0",
V
vben 已提交
42
    "vditor": "^3.8.1",
V
Vben 已提交
43 44
    "vue": "3.0.5",
    "vue-i18n": "9.0.0-rc.8",
V
vben 已提交
45
    "vue-router": "^4.0.4",
V
vben 已提交
46 47
    "vue-types": "^3.0.2",
    "vuex": "^4.0.0",
陈文彬 已提交
48
    "vuex-module-decorators": "^1.0.1",
V
vben 已提交
49
    "xlsx": "^0.16.9"
陈文彬 已提交
50 51
  },
  "devDependencies": {
V
Vben 已提交
52 53
    "@commitlint/cli": "^12.0.0",
    "@commitlint/config-conventional": "^12.0.0",
V
Vben 已提交
54
    "@iconify/json": "^1.1.308",
陈文彬 已提交
55
    "@ls-lint/ls-lint": "^1.9.2",
V
vben 已提交
56
    "@purge-icons/generated": "^0.7.0",
57
    "@types/fs-extra": "^9.0.7",
58
    "@types/http-proxy": "^1.17.5",
V
vben 已提交
59
    "@types/lodash-es": "^4.17.4",
陈文彬 已提交
60 61
    "@types/mockjs": "^1.0.3",
    "@types/nprogress": "^0.2.0",
V
vben 已提交
62
    "@types/qrcode": "^1.4.0",
63
    "@types/qs": "^6.9.5",
陈文彬 已提交
64
    "@types/rollup-plugin-visualizer": "^2.6.0",
V
vben 已提交
65
    "@types/sortablejs": "^1.10.6",
V
vben 已提交
66
    "@types/yargs": "^16.0.0",
V
Vben 已提交
67 68
    "@typescript-eslint/eslint-plugin": "^4.15.2",
    "@typescript-eslint/parser": "^4.15.2",
V
vben 已提交
69
    "@vitejs/plugin-legacy": "^1.3.1",
V
vben 已提交
70
    "@vitejs/plugin-vue": "^1.1.4",
V
Vben 已提交
71
    "@vitejs/plugin-vue-jsx": "^1.1.2",
V
Vben 已提交
72
    "@vue/compiler-sfc": "3.0.5",
V
vben 已提交
73
    "autoprefixer": "^10.2.4",
74
    "commitizen": "^4.2.3",
V
vben 已提交
75
    "conventional-changelog-cli": "^2.1.1",
V
vben 已提交
76
    "cross-env": "^7.0.3",
陈文彬 已提交
77
    "dotenv": "^8.2.0",
V
vben 已提交
78
    "eslint": "^7.20.0",
V
Vben 已提交
79
    "eslint-config-prettier": "^8.1.0",
V
vben 已提交
80
    "eslint-plugin-prettier": "^3.3.1",
V
vben 已提交
81
    "eslint-plugin-vue": "^7.6.0",
V
vben 已提交
82
    "esno": "^0.4.4",
V
vben 已提交
83
    "fs-extra": "^9.1.0",
84
    "http-server": "^0.12.3",
V
Vben 已提交
85
    "husky": "^5.1.1",
V
vben 已提交
86
    "is-ci": "^3.0.0",
V
vben 已提交
87
    "less": "^4.1.1",
V
vben 已提交
88
    "lint-staged": "^10.5.4",
V
vben 已提交
89
    "prettier": "^2.2.1",
V
vben 已提交
90
    "pretty-quick": "^3.1.0",
陈文彬 已提交
91
    "rimraf": "^3.0.2",
92
    "rollup-plugin-visualizer": "^4.2.0",
V
vben 已提交
93
    "stylelint": "^13.11.0",
陈文彬 已提交
94 95 96
    "stylelint-config-prettier": "^8.0.2",
    "stylelint-config-standard": "^20.0.0",
    "stylelint-order": "^4.1.0",
97
    "ts-node": "^9.1.1",
98
    "typescript": "4.1.5",
V
Vben 已提交
99
    "vite": "2.0.3",
V
Vben 已提交
100 101
    "vite-plugin-compression": "^0.2.2",
    "vite-plugin-html": "^2.0.2",
V
vben 已提交
102
    "vite-plugin-imagemin": "^0.2.8",
V
Vben 已提交
103
    "vite-plugin-mock": "^2.1.5",
V
vben 已提交
104
    "vite-plugin-purge-icons": "^0.7.0",
V
vben 已提交
105
    "vite-plugin-pwa": "^0.5.3",
106
    "vite-plugin-style-import": "^0.7.5",
V
vben 已提交
107
    "vite-plugin-theme": "^0.4.8",
V
Vben 已提交
108
    "vite-plugin-windicss": "0.5.0",
V
vben 已提交
109
    "vue-eslint-parser": "^7.5.0",
V
vben 已提交
110
    "yargs": "^16.2.0"
陈文彬 已提交
111
  },
V
vben 已提交
112 113
  "resolutions": {
    "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it",
114 115
    "bin-wrapper": "npm:bin-wrapper-china",
    "ecstatic": "4.1.4"
V
vben 已提交
116
  },
陈文彬 已提交
117 118 119 120 121 122 123 124 125
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anncwb/vue-vben-admin.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/anncwb/vue-vben-admin/issues"
  },
  "homepage": "https://github.com/anncwb/vue-vben-admin",
陈文彬 已提交
126
  "engines": {
V
vben 已提交
127
    "node": "^12 || ^14 || ^15 || ^16"
陈文彬 已提交
128 129
  }
}