-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
91 lines (91 loc) · 2.08 KB
/
package.json
1
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vue-iview-admin",
"version": "2.0.0",
"private": true,
"author": "Aaron",
"license": "MIT",
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:dev": "vue-cli-service build --mode dev",
"build:test": "vue-cli-service build --mode test",
"lint": "vue-cli-service lint",
"clean": "npm cache clean --force",
"docs": "docsify serve docs"
},
"repository": {
"type": "git",
"url": "https://github.com/Aaron52077/vue-iview-admin"
},
"dependencies": {
"axios": "0.18.1",
"clipboard": "^2.0.4",
"echarts": "^4.2.1",
"fuse.js": "^3.4.6",
"lodash": "4.17.13",
"mockjs": "^1.1.0",
"resize-observer-polyfill": "^1.5.1",
"three": "^0.110.0",
"v-charts": "^1.19.0",
"view-design": "^4.0.0",
"vue": "^2.6.6",
"vue-cropper": "^0.4.9",
"vue-grid-layout": "^2.3.7",
"vue-router": "^3.0.1",
"vuedraggable": "^2.24.3",
"vuex": "3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"babel-eslint": "^10.0.1",
"crypto-js": "^3.1.9-1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"generate-asset-webpack-plugin": "^0.3.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"script-ext-html-webpack-plugin": "^2.1.4",
"style-resources-loader": "^1.3.3",
"vue-cli-plugin-style-resources-loader": "^0.1.4",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"globals": {
"$": true,
"echarts": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"iOS >= 8",
"Firefox >= 20",
"Android >= 4.4"
]
}