package.json 2.62 KB
Newer Older
wb-ct393452's avatar
wb-ct393452 committed
1
{
陈浩玮's avatar
tijiao  
陈浩玮 committed
2 3 4 5 6 7 8 9 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
  "name": "vue-antd-admin",
  "version": "0.7.2",
  "homepage": "https://iczer.github.io/vue-antd-admin",
  "private": true,
  "scripts": {
    "start": "vue-cli-service serve",
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint",
    "predeploy": "yarn build",
    "deploy": "gh-pages -d dist -b pages -r https://gitee.com/iczer/vue-antd-admin.git",
    "docs:dev": "vuepress dev docs",
    "docs:build": "vuepress build docs",
    "docs:deploy": "vuepress build docs && gh-pages -d docs/.vuepress/dist -b master -r https://gitee.com/iczer/vue-antd-admin-docs.git"
  },
  "dependencies": {
    "@antv/data-set": "^0.11.4",
    "@tailwindcss/postcss7-compat": "^2.2.2",
    "cronstrue": "^1.106.0",
    "animate.css": "^4.1.0",
    "ant-design-vue": "1.7.2",
    "axios": "^0.21.1",
    "clipboard": "^2.0.6",
    "core-js": "^3.6.5",
    "crypto-js": "^4.0.0",
    "date-fns": "^2.14.0",
    "highlight.js": "^10.2.1",
    "lodash": "^4.17.21",
    "mockjs": "^1.1.0",
    "moment": "^2.29.1",
    "nprogress": "^0.2.0",
    "regenerator-runtime": "^0.13.7",
    "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.2",
    "viser-vue": "^2.4.8",
    "vue": "^2.6.11",
    "vue-i18n": "^8.18.2",
    "vue-router": "^3.3.4",
    "vuedraggable": "^2.23.2",
    "vuex": "^3.4.0"
  },
  "devDependencies": {
    "@ant-design/colors": "^4.0.1",
    "@babel/eslint-parser": "^7.14.7",
    "@vue/cli-plugin-babel": "^4.4.0",
    "@vue/cli-plugin-eslint": "^4.4.0",
    "@vue/cli-service": "^4.4.0",
    "@vuepress/plugin-back-to-top": "^1.5.2",
    "autoprefixer": "^9.8.6",
    "babel-plugin-transform-remove-console": "^6.9.4",
    "babel-polyfill": "^6.26.0",
    "compression-webpack-plugin": "^2.0.0",
    "deepmerge": "^4.2.2",
    "eslint": "^6.7.2",
    "eslint-plugin-prettier": "3.3.1",
    "eslint-plugin-vue": "^6.2.2",
    "fast-deep-equal": "^3.1.3",
    "gh-pages": "^3.1.0",
    "less-loader": "^6.1.1",
    "style-resources-loader": "^1.3.2",
    "vue-cli-plugin-style-resources-loader": "^0.1.4",
    "vue-template-compiler": "^2.6.11",
    "vuepress": "^1.5.2",
    "webpack-theme-color-replacer": "^1.3.12",
    "whatwg-fetch": "^3.0.0"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
wb-ct393452's avatar
wb-ct393452 committed
71
    },
陈浩玮's avatar
tijiao  
陈浩玮 committed
72 73 74
    "extends": [
      "plugin:vue/essential",
      "eslint:recommended"
75
    ],
陈浩玮's avatar
tijiao  
陈浩玮 committed
76 77 78 79 80
    "parserOptions": {
      "parser": "@babel/eslint-parser"
    },
    "rules": {
      "no-unused-vars": "off"
wb-ct393452's avatar
wb-ct393452 committed
81
    }
陈浩玮's avatar
tijiao  
陈浩玮 committed
82 83 84 85 86 87 88 89 90 91 92 93 94
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ],
  "lint-staged": {
    "*.{js,jsx,vue}": [
      "vue-cli-service lint",
      "git add"
    ]
  }
}