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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
| {
| "name": "vue-fg-plus",
| "version": "1.0.0",
| "description": "",
| "scripts": {
| "serve": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service serve --mode dev",
| "build:prod": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service build",
| "build:stage": "vue-cli-service build --mode staging",
| "preview": "node build/index.js --preview",
| "lint": "eslint --ext .js,.vue src",
| "test:unit": "jest --clearCache && vue-cli-service test:unit",
| "test:ci": "npm run lint && npm run test:unit"
| },
| "dependencies": {
| "@tweenjs/tween.js": "^18.6.4",
| "af-table-column": "^1.0.3",
| "af-table-column-s": "^1.0.5",
| "axios": "0.18.1",
| "chokidar": "^2.1.8",
| "core-js": "^3.30.2",
| "echarts": "^4.9.0",
| "echarts-gl": "^1.1.2",
| "echarts-liquidfill": "^2.0.6",
| "element-ui": "2.13.2",
| "file-saver": "^2.0.2",
| "inmap": "^2.3.3",
| "js-cookie": "2.2.0",
| "js-md5": "^0.7.3",
| "jsencrypt": "^3.2.1",
| "normalize.css": "7.0.0",
| "nprogress": "0.2.0",
| "patch-package": "^8.0.0",
| "path-to-regexp": "2.4.0",
| "pinyin-match": "^1.1.1",
| "postcss-px2rem": "^0.3.0",
| "qs": "^6.9.4",
| "script-loader": "^0.7.2",
| "speak-tts": "^2.0.8",
| "three": "^0.126.1",
| "three-csg-ts": "^3.1.13",
| "video.js": "^7.14.3",
| "videojs-flash": "^2.1.0",
| "videojs-swf": "^5.4.2",
| "vue": "^2.6.10",
| "vue-draggable-resizable": "^2.2.0",
| "vue-js-modal": "^2.0.1",
| "vue-jsonp": "^0.1.8",
| "vue-layer": "^1.2.0",
| "vue-router": "3.0.6",
| "vue-seamless-scroll": "^1.1.23",
| "vue-virtual-scroller": "^1.1.2",
| "vuejs-progress-bar": "^1.2.2",
| "vuex": "3.1.0",
| "xlsx": "^0.16.8"
| },
| "devDependencies": {
| "@vue/cli-plugin-babel": "4.4.4",
| "@vue/cli-plugin-eslint": "4.4.4",
| "@vue/cli-plugin-unit-jest": "4.4.4",
| "@vue/cli-service": "4.4.4",
| "@vue/test-utils": "1.0.0-beta.29",
| "autoprefixer": "9.5.1",
| "babel-eslint": "10.1.0",
| "babel-jest": "23.6.0",
| "babel-plugin-dynamic-import-node": "2.3.3",
| "chalk": "2.4.2",
| "connect": "3.6.6",
| "eslint": "6.7.2",
| "eslint-plugin-vue": "6.2.2",
| "ezuikit-js": "^0.6.1",
| "html-webpack-plugin": "3.2.0",
| "less": "^3.12.2",
| "less-loader": "^6.2.0",
| "mockjs": "1.0.1-beta3",
| "runjs": "4.3.2",
| "sass": "1.26.8",
| "sass-loader": "8.0.2",
| "script-ext-html-webpack-plugin": "2.1.3",
| "serve-static": "1.13.2",
| "svg-sprite-loader": "4.1.3",
| "svgo": "1.2.2",
| "vue-template-compiler": "2.6.10"
| },
| "eslintConfig": {
| "root": true,
| "env": {
| "node": true
| },
| "extends": [
| "plugin:vue/essential"
| ],
| "parserOptions": {
| "parser": "babel-eslint"
| },
| "rules": {
| "no-unused-vars": "off",
| "vue/no-unused-components": "off"
| }
| },
| "browserslist": [
| "> 1%",
| "last 2 versions"
| ],
| "engines": {
| "node": ">=8.9",
| "npm": ">= 3.0.0"
| },
| "license": "MIT"
| }
|
|