Blame view

ant-design-vue-jeecg/package.json 3.48 KB
肖超群 authored
1
2
3
4
5
6
{
  "name": "vue-antd-jeecg",
  "version": "3.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
7
8
    "serve_test": "vue-cli-service serve --mode test",
    "serve_production": "vue-cli-service serve --mode production",
9
10
    "build_development": "vue-cli-service build --mode development",
    "build_test": "vue-cli-service build --mode test",
谭毅彬 authored
11
    "build": "vue-cli-service build --report",
谭毅彬 authored
12
    "pre": "cnpm install || yarn --registry https://registry.npm.taobao.org || npm install --registry https://registry.npm.taobao.org || npm install echarts",
肖超群 authored
13
14
15
16
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "@antv/data-set": "^0.11.4",
17
    "@jeecg/antd-online-mini": "^3.1.0-beta",
18
19
20
    "@tinymce/tinymce-vue": "2.1.0",
    "@toast-ui/editor": "^2.1.2",
    "ant-design-vue": "^1.7.2",
肖超群 authored
21
    "axios": "^0.18.0",
22
23
24
25
    "china-area-data": "^5.0.1",
    "clipboard": "^2.0.4",
    "codemirror": "^5.46.0",
    "cron-parser": "^2.10.0",
肖超群 authored
26
    "dayjs": "^1.8.0",
27
    "dom-align": "1.12.0",
李泰瑜 authored
28
    "echarts": "^5.4.1",
肖超群 authored
29
30
    "enquire.js": "^2.1.6",
    "js-cookie": "^2.2.0",
31
    "jsbarcode": "^3.11.5",
肖超群 authored
32
33
34
    "lodash.get": "^4.4.2",
    "lodash.pick": "^4.4.0",
    "md5": "^2.2.1",
35
    "moment": "^2.29.4",
肖超群 authored
36
    "nprogress": "^0.2.0",
37
38
39
    "qiankun": "^2.5.1",
    "tinymce": "5.4.1",
    "viser-vue": "^2.4.8",
肖超群 authored
40
    "vue": "^2.6.10",
41
42
    "vue-area-linkage": "^5.1.0",
    "vue-barcode": "^1.3.0",
肖超群 authored
43
44
45
46
47
    "vue-cropper": "^0.5.4",
    "vue-i18n": "^8.7.0",
    "vue-loader": "^15.7.0",
    "vue-ls": "^3.2.0",
    "vue-photo-preview": "^1.1.3",
48
49
50
    "vue-print-nb-jeecg": "^1.0.9",
    "vue-qr": "^4.0.9",
    "vue-router": "^3.0.1",
肖超群 authored
51
52
    "vue-splitpane": "^1.0.4",
    "vuedraggable": "^2.20.0",
53
    "vuex": "^3.1.0",
肖超群 authored
54
55
    "vxe-table": "2.9.13",
    "vxe-table-plugin-antd": "1.8.10",
56
    "xe-utils": "2.4.8"
肖超群 authored
57
58
59
60
61
62
63
64
  },
  "devDependencies": {
    "@babel/polyfill": "^7.2.5",
    "@vue/cli-plugin-babel": "^3.3.0",
    "@vue/cli-plugin-eslint": "^3.3.0",
    "@vue/cli-service": "^3.3.0",
    "@vue/eslint-config-standard": "^4.0.0",
    "babel-eslint": "7.2.3",
65
    "compression-webpack-plugin": "^3.1.0",
肖超群 authored
66
67
    "eslint": "^5.16.0",
    "eslint-plugin-vue": "^5.1.0",
68
    "html-webpack-plugin": "^4.2.0",
肖超群 authored
69
70
71
    "less": "^3.9.0",
    "less-loader": "^4.1.0",
    "vue-template-compiler": "^2.6.10",
谭毅彬 authored
72
    "webpack": "^4.23.0"
肖超群 authored
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/strongly-recommended",
      "@vue/standard"
    ],
    "parserOptions": {
      "parser": "babel-eslint"
    },
    "rules": {
      "generator-star-spacing": "off",
      "no-mixed-operators": 0,
      "vue/max-attributes-per-line": [
        2,
        {
          "singleline": 5,
          "multiline": {
            "max": 1,
            "allowFirstLine": false
          }
        }
      ],
      "vue/attribute-hyphenation": 0,
      "vue/html-self-closing": 0,
      "vue/component-name-in-template-casing": 0,
      "vue/html-closing-bracket-spacing": 0,
      "vue/singleline-html-element-content-newline": 0,
      "vue/no-unused-components": 0,
      "vue/multiline-html-element-content-newline": 0,
      "vue/no-use-v-if-with-v-for": 0,
      "vue/html-closing-bracket-newline": 0,
      "vue/no-parsing-error": 0,
      "no-tabs": 0,
110
111
112
113
      "indent": [
        "off",
        2
      ],
肖超群 authored
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
      "no-console": 0,
      "space-before-function-paren": 0
    }
  },
  "postcss": {
    "plugins": {
      "autoprefixer": {}
    }
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
  ]
}