| 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
 | | { |  |   "name": "intelligent_manufacture", |  |   "version": "1.0.0", |  |   "private": true, |  |   "scripts": { |  |     "serve": "vue-cli-service serve", |  |     "build:pro": "vue-cli-service build", |  |     "build:staging": "vue-cli-service build --mode staging", |  |     "lint": "vue-cli-service lint", |  |     "fix": "eslint --ext .js,.vue src --fix" |  |   }, |  |   "dependencies": { |  |     "@fullcalendar/core": "^6.1.7", |  |     "@fullcalendar/daygrid": "^6.1.7", |  |     "@fullcalendar/interaction": "^6.1.7", |  |     "@fullcalendar/timegrid": "^6.1.7", |  |     "@fullcalendar/vue": "^6.1.7", |  |     "@riophae/vue-treeselect": "^0.4.0", |  |     "@wangeditor/editor": "^5.1.23", |  |     "@wangeditor/editor-for-vue": "^1.0.2", |  |     "axios": "^0.21.1", |  |     "core-js": "^3.6.5", |  |     "echarts": "^5.4.2", |  |     "ele-calendar": "^2.0.0", |  |     "element-ui": "^2.15.13", |  |     "js-cookie": "^2.2.1", |  |     "js-file-download": "^0.4.12", |  |     "sass-loader": "^8.0.2", |  |     "vue": "^2.6.11", |  |     "vue-clipboard2": "^0.3.3", |  |     "vue-router": "^3.5.1", |  |     "vuescroll": "^4.17.3", |  |     "vuex": "^3.4.0" |  |   }, |  |   "devDependencies": { |  |     "@vue/cli-plugin-babel": "~4.5.0", |  |     "@vue/cli-plugin-eslint": "~4.5.0", |  |     "@vue/cli-plugin-router": "~4.5.0", |  |     "@vue/cli-plugin-vuex": "~4.5.0", |  |     "@vue/cli-service": "~4.5.0", |  |     "@vue/eslint-config-standard": "^5.1.2", |  |     "babel-eslint": "^10.1.0", |  |     "eslint": "^6.7.2", |  |     "eslint-plugin-import": "^2.20.2", |  |     "eslint-plugin-node": "^11.1.0", |  |     "eslint-plugin-promise": "^4.2.1", |  |     "eslint-plugin-standard": "^4.0.0", |  |     "eslint-plugin-vue": "^6.2.2", |  |     "lint-staged": "^9.5.0", |  |     "node-sass": "^4.14.1", |  |     "vue-cli-plugin-element-ui": "~1.1.4", |  |     "vue-template-compiler": "^2.6.14" |  |   }, |  |   "eslintConfig": { |  |     "root": true, |  |     "env": { |  |       "node": true |  |     }, |  |     "extends": [ |  |       "plugin:vue/essential", |  |       "@vue/standard" |  |     ], |  |     "parserOptions": { |  |       "parser": "babel-eslint" |  |     }, |  |     "rules": { |  |       "indent": [ |  |         "error", |  |         2 |  |       ], |  |       "generator-star-spacing": "off", |  |       "no-debugger": "error" |  |     } |  |   }, |  |   "browserslist": [ |  |     "> 1%", |  |     "last 2 versions", |  |     "not dead" |  |   ], |  |   "gitHooks": { |  |     "pre-commit": "lint-staged" |  |   }, |  |   "lint-staged": { |  |     "*.{js,jsx,vue}": [ |  |       "vue-cli-service lint", |  |       "git add" |  |     ] |  |   } |  | } | 
 |