-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.3 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
{
"name": "vite-vue3-jdm",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
"prettier": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@visactor/vchart": "^1.12.13",
"@visactor/vchart-theme": "^1.12.2",
"@visactor/vgrammar-core": "^0.14.16",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vuepic/vue-datepicker": "^10.0.0",
"@vueuse/core": "^10.9.0",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^1.6.8",
"chroma-js": "^2.4.2",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"eslint-plugin-jsx": "^0.1.0",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"qs": "^6.12.1",
"vue": "^3.5.12",
"vue-draggable-plus": "^0.5.4",
"vue-i18n": "^9.10.2",
"vue-router": "4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@iconify/json": "^2.2.243",
"@iconify/vue": "^4.1.2",
"@types/chroma-js": "^2.4.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.2",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@unocss/preset-rem-to-px": "0.59.0-beta.1",
"@vitejs/plugin-vue": "^5.0.4",
"commitlint": "^19.2.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mockjs": "^1.1.0",
"naive-ui": "^2.41.0",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"typescript": "^5.2.2",
"unocss": "^0.63.6",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vfonts": "^0.0.3",
"vite": "^5.2.0",
"vite-plugin-mock": "^3.0.1",
"vue-tsc": "^2.0.6"
},
"lint-staged": {
"**/*.{html,vue,ts,cjs,json,md}": [
"prettier"
],
"**/*.{vue,js,ts,jsx,tsx}": [
"eslint"
]
}
}