-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "vue3-basic-admin",
"private": true,
"version": "1.8.3",
"type": "module",
"scripts": {
"start": "vite",
"build": "vue-tsc --noEmit && vite build",
"report": "cross-env REPORT=true npm run build",
"preview": "vite preview",
"lint": "eslint --ext=vue,js src",
"lint:fix": "eslint --ext=vue,js --fix src",
"prepare": "husky install"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"axios": "^0.27.2",
"d3": "^7.9.0",
"dayjs": "^1.11.7",
"echarts": "^5.3.3",
"echarts-liquidfill": "3",
"echarts-wordcloud": "2",
"element-plus": "^2.2.19",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"ol": "^9.1.0",
"path-browserify": "^1.0.1",
"pinia": "^2.0.18",
"pinia-plugin-persistedstate": "^2.3.0",
"three": "^0.162.0",
"tinymce": "^6.3.1",
"vditor": "^3.9.0",
"vue": "^3.2.37",
"vue-json-pretty": "^2.2.3",
"vue-router": "^4.1.3",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/d3": "^7.4.3",
"@types/mockjs": "^1.0.7",
"@types/node": "^18.11.9",
"@types/nprogress": "^0.2.0",
"@types/path-browserify": "^1.0.0",
"@types/three": "^0.162.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-vue": "^3.0.2",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/compiler-sfc": "^3.2.47",
"@vueuse/core": "^9.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"picocolors": "^1.0.0",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.55.0",
"typescript": "^4.6.4",
"unplugin-auto-import": "^0.11.4",
"unplugin-element-plus": "^0.7.0",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.0.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-mock": "^2.9.6",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^0.39.5"
},
"resolutions": {
"bin-wrapper": "npm:bin-wrapper-china",
"rollup": "^2.56.3",
"gifsicle": "5.2.0"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,vue}": [
"eslint --fix",
"prettier --write",
"git add"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}