-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.83 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
{
"name": "test",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build:old": "run-p type-check build-only",
"build": "vite build ",
"build:tar": "vite build && tar -zcvf cockpit-web.tar.gz dist",
"build:dev": "vite build --mode test",
"build:test": "vite build --mode test",
"preview": "vite build && vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"prepare": "husky install",
"lint:lint-staged": "lint-staged"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@types/crypto-js": "^4.2.2",
"@unocss/reset": "^0.53.6",
"@vitejs/plugin-legacy": "^5.4.1",
"@vueuse/motion": "^2.2.3",
"ant-design-vue": "~4.2.3",
"axios": "^1.7.2",
"countup.js": "^2.8.0",
"crypto-js": "^4.2.0",
"d3": "^7.9.0",
"dayjs": "^1.11.11",
"echarts": "5.1.1",
"echarts-gl": "2.0.9",
"lodash-es": "^4.17.21",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"vue": "^3.4.31",
"vue-router": "^4.4.0",
"vue3-baidu-map-gl": "^2.4.0",
"vue3-seamless-scroll": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/codemirror": "^5.60.15",
"@types/lodash-es": "^4.17.12",
"@types/mockjs": "^1.0.10",
"@types/node": "^20.14.9",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@unocss/postcss": "^0.53.6",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/tsconfig": "^0.4.0",
"@vueuse/core": "^10.11.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-define-config": "^1.24.1",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"eslint-plugin-vue": "^8.7.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"qs": "^6.12.3",
"sass": "^1.77.6",
"tailwindcss": "^3.4.4",
"terser": "^5.31.4",
"typescript": "~5.1.6",
"unocss": "^0.53.6",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"vite": "^5.4.0",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-top-level-await": "^1.4.1",
"vue-tsc": "^1.8.27",
"vue3-scroll-seamless": "^1.0.6"
},
"engines": {
"node": "^20 || >=20"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write"
],
"*.{scss,less,styl,html}": [
"stylelint --fix"
]
}
}