Blame view

package.json 3.55 KB
DESKTOP-AO0VKC8\mahua authored
1
2
3
4
5
6
7
8
9
10
11
12
{
  "name": "vue-antd-jeecg",
  "version": "2.4.2",
  "private": true,
  "scripts": {
    "pre": "cnpm install || yarn --registry https://registry.npm.taobao.org || npm install --registry https://registry.npm.taobao.org ",
    "serve": "vue-cli-service serve",
    "build:test": "vue-cli-service build --mode test",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
13
    "@antv/data-set": "^0.11.4",
DESKTOP-AO0VKC8\mahua authored
14
    "@jeecg/antd-online-mini": "2.4.22-beta",
15
16
    "@tinymce/tinymce-vue": "^2.1.0",
    "@toast-ui/editor": "^2.1.2",
DESKTOP-AO0VKC8\mahua authored
17
    "ant-design-vue": "^1.7.3",
18
    "area-data": "^5.0.6",
游杰 authored
19
    "axios": "^0.21.1",
20
21
    "clipboard": "^2.0.4",
    "codemirror": "^5.46.0",
游杰 authored
22
    "compression-webpack-plugin": "^5.0.1",
DESKTOP-AO0VKC8\mahua authored
23
    "dayjs": "^1.8.0",
24
    "dom-align": "1.12.0",
DESKTOP-AO0VKC8\mahua authored
25
    "enquire.js": "^2.1.6",
26
27
28
    "gantt-elastic": "^1.0.12",
    "gantt-elastic-header": "^0.1.11",
    "gantt-schedule-timeline-calendar": "^3.6.6",
DESKTOP-AO0VKC8\mahua authored
29
30
31
32
33
    "js-cookie": "^2.2.0",
    "lodash.get": "^4.4.2",
    "lodash.pick": "^4.4.0",
    "md5": "^2.2.1",
    "nprogress": "^0.2.0",
游杰 authored
34
35
    "qrcode.vue": "^3.2.2",
    "qrcodejs2": "0.0.2",
36
37
    "tinymce": "^5.3.2",
    "viser-vue": "^2.4.8",
DESKTOP-AO0VKC8\mahua authored
38
    "vue": "^2.6.10",
39
    "vue-area-linkage": "^5.1.0",
DESKTOP-AO0VKC8\mahua authored
40
41
    "vue-cropper": "^0.5.4",
    "vue-i18n": "^8.7.0",
42
    "vue-json-excel": "^0.3.0",
DESKTOP-AO0VKC8\mahua authored
43
44
45
    "vue-loader": "^15.7.0",
    "vue-ls": "^3.2.0",
    "vue-photo-preview": "^1.1.3",
46
    "vue-print-nb-jeecg": "^1.0.9",
47
    "vue-qr": "^2.4.0",
48
    "vue-router": "^3.0.1",
DESKTOP-AO0VKC8\mahua authored
49
50
    "vue-splitpane": "^1.0.4",
    "vuedraggable": "^2.20.0",
51
    "vuex": "^3.1.0",
DESKTOP-AO0VKC8\mahua authored
52
    "vxe-table": "2.9.13",
53
54
    "vxe-table-plugin-antd": "1.8.10",
    "xe-utils": "2.4.8"
DESKTOP-AO0VKC8\mahua authored
55
56
57
58
59
  },
  "devDependencies": {
    "@babel/polyfill": "^7.2.5",
    "@vue/cli-plugin-babel": "^3.3.0",
    "@vue/cli-plugin-eslint": "^3.3.0",
游杰 authored
60
    "@vue/cli-service": "^4.5.12",
DESKTOP-AO0VKC8\mahua authored
61
62
63
64
    "@vue/eslint-config-standard": "^4.0.0",
    "babel-eslint": "7.2.3",
    "eslint": "^5.16.0",
    "eslint-plugin-vue": "^5.1.0",
游杰 authored
65
    "html-webpack-plugin": "^4.2.0",
DESKTOP-AO0VKC8\mahua authored
66
67
68
    "less": "^3.9.0",
    "less-loader": "^4.1.0",
    "vue-template-compiler": "^2.6.10",
游杰 authored
69
70
    "webpack": "^4.46.0",
    "webpack-cli": "^4.5.0"
DESKTOP-AO0VKC8\mahua authored
71
72
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  },
  "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,
      "indent": [
        "off",
        2
      ],
      "no-console": 0,
      "space-before-function-paren": 0
    }
  },
  "postcss": {
    "plugins": {
      "autoprefixer": {}
    }
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 10"
游杰 authored
125
126
127
128
129
130
131
132
133
134
  ],
  "description": "Ant Design Jeecg Vue\r ====",
  "main": "babel.config.js",
  "repository": {
    "type": "git",
    "url": "http://172.16.29.40:8010/wms/MMS-UI.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC"
DESKTOP-AO0VKC8\mahua authored
135
}