package.json 4.5 KB
Newer Older
陈文彬 已提交
1
{
V
vben 已提交
2
  "name": "vben-admin",
V
vben 已提交
3
  "version": "2.0.0",
陈文彬 已提交
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",
13
    "log": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
V
vben 已提交
14
    "clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
陈文彬 已提交
15
    "clean:lib": "npx rimraf node_modules",
V
vben 已提交
16
    "typecheck": "vuedx-typecheck .",
V
vben 已提交
17
    "lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
陈文彬 已提交
18
    "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
19
    "lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
V
vben 已提交
20 21
    "lint:ls-lint": "ls-lint",
    "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
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.1.1",
V
vben 已提交
30
    "ant-design-vue": "2.0.0",
V
vben 已提交
31
    "apexcharts": "^3.25.0",
V
vben 已提交
32
    "axios": "^0.21.1",
V
vben 已提交
33
    "crypto-es": "^1.2.7",
V
vben 已提交
34
    "echarts": "^5.0.2",
V
vben 已提交
35
    "lodash-es": "^4.17.20",
陈文彬 已提交
36 37
    "mockjs": "^1.1.0",
    "nprogress": "^0.2.0",
38
    "path-to-regexp": "^6.2.0",
陈文彬 已提交
39
    "qrcode": "^1.4.4",
V
vben 已提交
40
    "sortablejs": "^1.13.0",
V
vben 已提交
41
    "vditor": "^3.8.1",
V
vben 已提交
42
    "vue": "^3.0.5",
V
vben 已提交
43
    "vue-i18n": "9.0.0-rc.2",
V
vben 已提交
44
    "vue-router": "^4.0.3",
V
vben 已提交
45 46
    "vue-types": "^3.0.2",
    "vuex": "^4.0.0",
陈文彬 已提交
47
    "vuex-module-decorators": "^1.0.1",
V
vben 已提交
48
    "xlsx": "^0.16.9",
陈文彬 已提交
49 50 51 52 53
    "zxcvbn": "^4.4.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
V
vben 已提交
54
    "@iconify/json": "^1.1.303",
陈文彬 已提交
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",
陈文彬 已提交
59
    "@types/koa-static": "^4.0.1",
V
vben 已提交
60
    "@types/lodash-es": "^4.17.4",
陈文彬 已提交
61 62
    "@types/mockjs": "^1.0.3",
    "@types/nprogress": "^0.2.0",
V
vben 已提交
63
    "@types/qrcode": "^1.4.0",
陈文彬 已提交
64
    "@types/rollup-plugin-visualizer": "^2.6.0",
V
vben 已提交
65
    "@types/sortablejs": "^1.10.6",
V
vben 已提交
66
    "@types/yargs": "^16.0.0",
陈文彬 已提交
67
    "@types/zxcvbn": "^4.4.0",
V
vben 已提交
68 69 70
    "@typescript-eslint/eslint-plugin": "^4.15.1",
    "@typescript-eslint/parser": "^4.15.1",
    "@vitejs/plugin-legacy": "^1.3.1",
V
vben 已提交
71
    "@vitejs/plugin-vue": "^1.1.4",
72
    "@vitejs/plugin-vue-jsx": "^1.1.0",
V
vben 已提交
73
    "@vue/compiler-sfc": "^3.0.5",
V
vben 已提交
74 75
    "@vuedx/typecheck": "^0.6.3",
    "@vuedx/typescript-plugin-vue": "^0.6.3",
V
vben 已提交
76
    "autoprefixer": "^10.2.4",
77
    "commitizen": "^4.2.3",
V
vben 已提交
78
    "conventional-changelog-cli": "^2.1.1",
V
vben 已提交
79
    "cross-env": "^7.0.3",
陈文彬 已提交
80
    "dotenv": "^8.2.0",
V
vben 已提交
81
    "eslint": "^7.20.0",
82
    "eslint-config-prettier": "^7.2.0",
V
vben 已提交
83
    "eslint-plugin-prettier": "^3.3.1",
V
vben 已提交
84
    "eslint-plugin-vue": "^7.6.0",
V
vben 已提交
85
    "esno": "^0.4.3",
V
vben 已提交
86
    "fs-extra": "^9.1.0",
87
    "http-server": "^0.12.3",
V
vben 已提交
88 89
    "husky": "^5.0.9",
    "is-ci": "^2.0.0",
V
vben 已提交
90
    "less": "^4.1.1",
V
vben 已提交
91
    "lint-staged": "^10.5.4",
V
vben 已提交
92
    "prettier": "^2.2.1",
陈文彬 已提交
93
    "rimraf": "^3.0.2",
94
    "rollup-plugin-visualizer": "^4.2.0",
95
    "stylelint": "^13.10.0",
陈文彬 已提交
96 97 98
    "stylelint-config-prettier": "^8.0.2",
    "stylelint-config-standard": "^20.0.0",
    "stylelint-order": "^4.1.0",
99
    "ts-node": "^9.1.1",
100
    "typescript": "^4.1.5",
V
vben 已提交
101
    "vite": "2.0.1",
102
    "vite-plugin-compression": "^0.2.1",
V
vben 已提交
103
    "vite-plugin-html": "^2.0.0",
104
    "vite-plugin-imagemin": "^0.2.6",
V
vben 已提交
105
    "vite-plugin-mock": "^2.1.4",
V
vben 已提交
106 107
    "vite-plugin-purge-icons": "^0.7.0",
    "vite-plugin-pwa": "^0.4.7",
V
vben 已提交
108
    "vite-plugin-style-import": "^0.7.2",
109
    "vite-plugin-theme": "^0.4.3",
110
    "vite-plugin-windicss": "0.3.3",
V
vben 已提交
111
    "vue-eslint-parser": "^7.5.0",
V
vben 已提交
112
    "yargs": "^16.2.0"
陈文彬 已提交
113
  },
V
vben 已提交
114 115
  "resolutions": {
    "//": "Used to install imagemin dependencies, because imagemin may not be installed in China.If it is abroad, you can delete it",
116 117
    "bin-wrapper": "npm:bin-wrapper-china",
    "ecstatic": "4.1.4"
V
vben 已提交
118
  },
陈文彬 已提交
119 120 121 122 123 124 125 126 127
  "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",
陈文彬 已提交
128
  "engines": {
V
vben 已提交
129
    "node": "^12 || ^14 || ^15 || ^16"
陈文彬 已提交
130 131
  }
}