package.json 2.8 KB
Newer Older
有来技术 已提交
1
{
郝先瑞 已提交
2
  "name": "vue3-element-admin",
3
  "private": true,
4
  "version": "2.1.0",
5
  "type": "module",
郝先瑞 已提交
6 7
  "scripts": {
    "dev": "vite serve --mode development",
8
    "build:prod": "vite build --mode production &&vue-tsc --noEmit",
郝先瑞 已提交
9
    "prepare": "husky install",
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    "lint:eslint": "eslint  --fix --ext .ts,.js,.vue ./src ",
    "lint:prettier": "prettier --write \"**/*.{js,cjs,ts,json,tsx,css,less,scss,vue,html,md}\"",
    "lint:stylelint": "stylelint  \"**/*.{css,scss,vue}\" --fix",
    "lint:lint-staged": "lint-staged",
    "commit": "git-cz"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-git"
    }
  },
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{cjs,json}": [
      "prettier --write"
    ],
    "*.{vue,html}": [
      "eslint --fix",
      "prettier --write",
      "stylelint --fix"
    ],
    "*.{scss,css}": [
      "stylelint --fix",
      "prettier --write"
    ],
    "*.md": [
      "prettier --write"
    ]
郝先瑞 已提交
41 42
  },
  "dependencies": {
R
Rackar 已提交
43
    "@vueuse/core": "^9.1.1",
郝先瑞 已提交
44 45
    "@wangeditor/editor": "^5.0.0",
    "@wangeditor/editor-for-vue": "^5.1.10",
46
    "axios": "^1.3.4",
郝先瑞 已提交
47
    "echarts": "^5.2.2",
48
    "element-plus": "^2.3.1",
郝先瑞 已提交
49 50 51
    "nprogress": "^0.2.0",
    "path-browserify": "^1.0.1",
    "path-to-regexp": "^6.2.0",
52
    "pinia": "^2.0.33",
郝先瑞 已提交
53
    "screenfull": "^6.0.0",
H
haoxr 已提交
54
    "vue": "^3.2.45",
55
    "vue-i18n": "9",
56
    "vue-router": "^4.1.6"
郝先瑞 已提交
57 58
  },
  "devDependencies": {
59 60
    "@commitlint/cli": "^17.5.1",
    "@commitlint/config-conventional": "^17.4.4",
61
    "@iconify-json/ep": "^1.1.8",
62 63 64
    "typescript": "^4.9.3",
    "@typescript-eslint/eslint-plugin": "^5.51.0",
    "@typescript-eslint/parser": "^5.51.0",
郝先瑞 已提交
65 66
    "@types/nprogress": "^0.2.0",
    "@types/path-browserify": "^1.0.0",
H
haoxr 已提交
67
    "@vitejs/plugin-vue": "^4.0.0",
68
    "autoprefixer": "^10.4.13",
69
    "fast-glob": "^3.2.11",
H
haoxr 已提交
70
    "unocss": "^0.50.1",
H
haoxr 已提交
71
    "unplugin-auto-import": "^0.13.0",
72
    "unplugin-icons": "^0.15.1",
H
haoxr 已提交
73
    "unplugin-vue-components": "^0.23.0",
74
    "vite": "^4.1.4",
郝先瑞 已提交
75
    "vite-plugin-svg-icons": "^2.0.1",
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
    "vue-tsc": "^0.35.0",
    "commitizen": "^4.3.0",
    "cz-git": "^1.6.1",
    "eslint": "^8.34.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-vue": "^9.9.0",
    "husky": "^8.0.0",
    "lint-staged": "^13.2.1",
    "postcss": "^8.4.21",
    "postcss-html": "^1.5.0",
    "postcss-scss": "^4.0.6",
    "prettier": "^2.8.7",
    "sass": "^1.58.3",
    "stylelint": "^15.4.0",
    "stylelint-config-html": "^1.1.0",
    "stylelint-config-recess-order": "^4.0.0",
    "stylelint-config-recommended-scss": "^9.0.1",
    "stylelint-config-recommended-vue": "^1.4.0",
    "stylelint-config-standard": "^32.0.0",
    "stylelint-config-standard-scss": "^8.0.0"
郝先瑞 已提交
97 98 99 100
  },
  "repository": "https://gitee.com/youlaiorg/vue3-element-admin.git",
  "author": "有来开源组织",
  "license": "MIT"
有来技术 已提交
101
}