-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
{
"name": "x-chart",
"version": "0.3.0",
"private": true,
"description": "Draggable & resizable data visualization dashboard",
"author": "yugasun <yuga_sun@163.com>",
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:cache": "cross-env CACHE=true vue-cli-service build",
"build:git-page": "cross-env GIT_PAGE=true vue-cli-service build",
"test": "npm run lint",
"lint": "vue-cli-service lint",
"deploy": "npm run build:git-page && gh-pages -d dist --remote origin",
"docker:build": "docker build -t x-chart .",
"docker:exec": "docker exec -it x-chart bash",
"docker:run": "docker run -itd -p 8080:80 --name=x-chart x-chart"
},
"dependencies": {
"@types/echarts": "^4.1.3",
"@types/mockjs": "^1.0.2",
"@types/qs": "^6.5.1",
"axios": "^0.18.0",
"element-ui": "^2.4.11",
"mockjs": "^1.0.1-beta3",
"normalize.css": "^8.0.0",
"qs": "^6.5.2",
"vue": "^2.5.17",
"vue-axios-plugin": "^1.3.0",
"vue-class-component": "^6.3.2",
"vue-echarts": "^3.1.3",
"vue-grid-layout": "git+https://github.com/yugasun/vue-grid-layout.git#pro/compass",
"vue-property-decorator": "^7.2.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@types/node": "^11.12.1",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-typescript": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-component": "^1.1.1",
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"gh-pages": "^2.0.1",
"node-sass": "^4.9.0",
"prerender-spa-plugin": "^3.4.0",
"sass-loader": "^7.0.1",
"typescript": "^3.2.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue-template-compiler": "^2.5.17"
},
"bugs": {
"url": "https://github.com/yugasun/x-chart/issues"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"homepage": "https://github.com/yugasun/x-chart#readme",
"keywords": [
"data-visualization",
"echarts",
"vuejs",
"vue-grid-layout"
],
"license": "MIT",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yugasun/x-chart.git"
}
}