|
1
|
{
|
|
2
|
"name": "vue-antd-jeecg",
|
|
3
|
"version": "2.2.0",
|
|
4
|
"private": true,
|
|
5
|
"scripts": {
|
|
6
|
"pre": "yarn --registry https://registry.npm.taobao.org || cnpm install || npm install --registry https://registry.npm.taobao.org ",
|
|
7
|
"serve": "vue-cli-service serve",
|
|
8
|
"build": "vue-cli-service build",
|
|
9
|
"lint": "vue-cli-service lint"
|
|
10
11
|
},
"dependencies": {
|
|
12
13
|
"@antv/data-set": "^0.11.2",
"@jeecg/antd-online-beta220": "^1.0.1",
|
|
14
|
"@tinymce/tinymce-vue": "^2.0.0",
|
|
15
16
|
"ant-design-vue": "^1.5.2",
"area-data": "^5.0.6",
|
|
17
|
"axios": "^0.18.0",
|
|
18
19
|
"clipboard": "^2.0.4",
"codemirror": "^5.46.0",
|
|
20
21
22
23
24
25
26
|
"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",
|
|
27
|
"tinymce": "^5.1.4",
|
|
28
|
"tui-editor": "^1.4.10",
|
|
29
|
"viser-vue": "^2.4.4",
|
|
30
|
"vue": "^2.6.10",
|
|
31
|
"vue-area-linkage": "^5.1.0",
|
|
32
33
|
"vue-cropper": "^0.4.8",
"vue-i18n": "^8.7.0",
|
|
34
|
"vue-loader": "^15.7.0",
|
|
35
|
"vue-ls": "^3.2.0",
|
|
36
|
"vue-photo-preview": "^1.1.3",
|
|
37
|
"vue-print-nb-jeecg": "^1.0.9",
|
|
38
|
"vue-router": "^3.0.1",
|
|
39
40
|
"vue-splitpane": "^1.0.4",
"vuedraggable": "^2.20.0",
|
|
41
|
"vuex": "^3.1.0"
|
|
42
43
44
45
46
47
48
49
|
},
"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": "^10.0.1",
|
|
50
|
"compression-webpack-plugin": "^3.1.0",
|
|
51
|
"eslint": "^5.16.0",
|
|
52
|
"eslint-plugin-vue": "^5.1.0",
|
|
53
|
"html-webpack-plugin": "^4.2.0",
|
|
54
|
"less": "^3.9.0",
|
|
55
|
"less-loader": "^4.1.0",
|
|
56
|
"vue-template-compiler": "^2.6.10"
|
|
57
58
59
60
61
62
63
64
|
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/strongly-recommended",
|
|
65
|
"@vue/standard"
|
|
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
],
"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,
|
|
93
|
"no-console": 0,
|
|
94
95
|
"no-tabs": 0,
"indent": [1, 4]
|
|
96
97
98
99
100
101
102
103
104
105
|
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
|
|
106
|
"not ie <= 10"
|
|
107
108
|
]
}
|