-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
106 lines (106 loc) · 3.14 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
{
"name": "x-chart",
"version": "1.0.0",
"description": "Draggable & resizable data visualization dashboard",
"author": "yugasun <[email protected]>",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts,.vue --fix src",
"prettier": "prettier --write --ignore-unknown '**/*'",
"stylelint": "stylelint --fix 'src/**/*.{scss,less,css}'",
"commit": "git-cz",
"release": "npx bumpp --push --tag --commit",
"postinstall": "npx msw init public --save",
"prepare": "husky install",
"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": {
"@element-plus/icons-vue": "^1.1.4",
"@interactjs/core": "^1.10.14",
"@interactjs/utils": "^1.10.14",
"@vueuse/core": "^8.4.2",
"@vueuse/integrations": "^8.5.0",
"axios": "^0.27.2",
"echarts": "^5.3.3",
"element-plus": "^2.1.11",
"pinia": "^2.0.14",
"universal-cookie": "^4.0.4",
"vue": "^3.2.25",
"vue-echarts": "^6.1.0",
"vue-grid-layout": "3.0.0-beta1",
"vue-router": "^4.0.15",
"workbox-core": "^6.5.3",
"workbox-precaching": "^6.5.3",
"workbox-routing": "^6.5.3",
"workbox-window": "^6.5.3"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vitejs/plugin-vue": "^2.3.1",
"autoprefixer": "^10.4.7",
"bumpp": "^7.1.1",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.1",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"msw": "^0.40.1",
"postcss": "^8.4.14",
"postcss-scss": "^4.0.4",
"prettier": "^2.6.2",
"rollup": "^2.75.5",
"sass": "^1.51.0",
"standard-version": "^9.5.0",
"stylelint": "^14.8.2",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^4.0.0",
"typescript": "^4.6.4",
"unplugin-auto-import": "^0.7.2",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.9.7",
"vite-plugin-pwa": "^0.12.0",
"vite-plugin-style-import": "^2.0.0",
"vue-tsc": "^0.34.7"
},
"bugs": {
"url": "https://github.com/yugasun/x-chart/issues"
},
"engines": {
"node": ">= 12.0.0"
},
"homepage": "https://github.com/yugasun/x-chart#readme",
"keywords": [
"data-visualization",
"echarts",
"vuejs",
"vue-grid-layout",
"vue3",
"vite",
"pinia",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yugasun/x-chart.git"
},
"msw": {
"workerDirectory": "public"
}
}