|
1
|
{
|
|
2
|
"name": "vue-antd-jeecg",
|
|
3
|
"version": "3.0.0",
|
|
4
|
"private": true,
|
|
5
|
"scripts": {
|
|
6
|
"pre": "cnpm install || yarn --registry https://registry.npm.taobao.org || npm install --registry https://registry.npm.taobao.org ",
|
|
7
|
"serve": "vue-cli-service serve",
|
|
8
|
"build:test": "vue-cli-service build --mode test",
|
|
9
|
"build": "vue-cli-service build",
|
|
10
|
"lint": "vue-cli-service lint"
|
|
11
12
|
},
"dependencies": {
|
|
13
|
"ant-design-vue": "^1.7.2",
|
|
14
|
"@jeecg/antd-online-mini": "3.0.0-RC",
|
|
15
16
|
"@antv/data-set": "^0.11.4",
"viser-vue": "^2.4.8",
|
|
17
18
19
20
21
22
23
24
|
"axios": "^0.18.0",
"dayjs": "^1.8.0",
"enquire.js": "^2.1.6",
"js-cookie": "^2.2.0",
"lodash.get": "^4.4.2",
"lodash.pick": "^4.4.0",
"md5": "^2.2.1",
"nprogress": "^0.2.0",
|
|
25
|
"vue": "^2.6.10",
|
|
26
|
"vue-cropper": "^0.5.4",
|
|
27
|
"vue-i18n": "^8.7.0",
|
|
28
|
"vue-loader": "^15.7.0",
|
|
29
30
|
"vue-ls": "^3.2.0",
"vue-router": "^3.0.1",
|
|
31
32
33
34
|
"vuex": "^3.1.0",
"vue-print-nb-jeecg": "^1.0.9",
"clipboard": "^2.0.4",
"vue-photo-preview": "^1.1.3",
|
|
35
36
|
"vue-splitpane": "^1.0.4",
"vuedraggable": "^2.20.0",
|
|
37
38
39
40
41
|
"codemirror": "^5.46.0",
"@tinymce/tinymce-vue": "^2.1.0",
"tinymce": "^5.3.2",
"@toast-ui/editor": "^2.1.2",
"vue-area-linkage": "^5.1.0",
|
|
42
|
"china-area-data": "^5.0.1",
|
|
43
44
45
|
"dom-align": "1.12.0",
"xe-utils": "2.4.8",
"vxe-table": "2.9.13",
|
|
46
47
|
"vxe-table-plugin-antd": "1.8.10",
"cron-parser": "^2.10.0"
|
|
48
49
50
51
52
53
54
|
},
"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",
|
|
55
|
"babel-eslint": "7.2.3",
|
|
56
|
"eslint": "^5.16.0",
|
|
57
|
"eslint-plugin-vue": "^5.1.0",
|
|
58
|
"less": "^3.9.0",
|
|
59
|
"less-loader": "^4.1.0",
|
|
60
61
|
"vue-template-compiler": "^2.6.10",
"html-webpack-plugin": "^4.2.0",
|
|
62
|
"compression-webpack-plugin": "^3.1.0"
|
|
63
64
65
66
67
68
69
70
|
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/strongly-recommended",
|
|
71
|
"@vue/standard"
|
|
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
|
],
"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,
|
|
99
|
"no-tabs": 0,
|
|
100
|
"indent": ["off", 2],
|
|
101
102
|
"no-console": 0,
"space-before-function-paren": 0
|
|
103
104
105
106
107
108
109
110
111
112
|
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
|
|
113
|
"not ie <= 10"
|
|
114
115
|
]
}
|