-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.91 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "dva-datav-big-screen",
"version": "0.1.10",
"private": true,
"main": "lib/index/index.js",
"style": "lib/styles/index.css",
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"clean:lib": "rimraf dist && rimraf lib",
"clean:all": "rimraf node_modules && rimraf dist && rimraf lib"
},
"dependencies": {
"TagCloud": "^2.2.0",
"animate.css": "^4.1.1",
"clipboard": "^2.0.4",
"core-js": "^3.8.3",
"file-saver": "^2.0.2",
"gsap": "^3.10.4",
"resize-detector": "^0.3.0",
"store": "^2.0.12",
"throttle-debounce": "^5.0.0",
"vue": "^2.6.14",
"vue-count-to": "^1.0.13",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@types/dat.gui": "^0.7.7",
"@types/three": "^0.146.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-plugin-component": "^1.1.1",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^3.1.3",
"css-loader": "^6.7.1",
"dat.gui": "^0.7.9",
"dayjs": "^1.11.4",
"element-ui": "2.15.6",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^8.0.3",
"file-loader": "^1.1.11",
"highlight.js": "^10.4.0",
"json-loader": "^0.5.7",
"lint-staged": "^11.1.2",
"markdown-it": "^12.0.0",
"markdown-it-anchor": "^6.0.0",
"markdown-it-chain": "^1.3.0",
"markdown-it-container": "^3.0.0",
"mini-css-extract-plugin": "^2.6.1",
"normalize.css": "7.0.0",
"path-browserify": "^1.0.1",
"path-to-regexp": "2.4.0",
"postcss-loader": "^6.2.1",
"progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^3.0.2",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^1.1.0",
"three": "^0.145.0",
"transliteration": "^2.1.11",
"url-loader": "^4.1.1",
"vue-loader": "15.9.8",
"vue-router": "^3.5.1",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2",
"webpack": "^4.14.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^1.7.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": "vue-cli-service lint"
}
}