-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.63 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
{
"name": "vue-power-admin",
"type": "module",
"version": "1.2.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"commit": "git cz",
"plop": "plop",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "npm version patch",
"build": "vue-tsc && vite build",
"build:test": "vue-tsc && vite build --mode test",
"preview": "yarn build && vite preview",
"preview:test": "yarn build:test && vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^10.4.1",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^1.6.0",
"echarts": "^5.4.3",
"element-plus": "^2.3.14",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"qs": "^6.11.2",
"viewerjs": "^1.11.5",
"vue": "3.3.4",
"vue-i18n": "^9.4.1",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@iconify-json/ep": "^1.1.12",
"@iconify-json/fluent-emoji-flat": "^1.1.12",
"@iconify-json/ri": "^1.1.12",
"@iconify/utils": "^2.1.9",
"@iconify/vue": "^4.1.1",
"@toryz/eslint-config": "^0.1.4",
"@types/js-cookie": "^3.0.3",
"@types/lodash-es": "^4.17.9",
"@types/mockjs": "^1.0.7",
"@types/node": "20.6.0",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.8",
"@vitejs/plugin-legacy": "^4.1.1",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/compiler-sfc": "^3.3.4",
"autoprefixer": "^10.4.15",
"chalk": "^5.3.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^4.1.0",
"cz-git": "^1.7.1",
"eslint": "^8.49.0",
"lint-staged": "^14.0.1",
"mockjs": "^1.1.0",
"plop": "^3.1.2",
"sass": "^1.55.0",
"simple-git-hooks": "^2.9.0",
"terser": "^5.19.4",
"typescript": "5.1.6",
"unocss": "^0.55.7",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.8",
"vite": "4.5.3",
"vite-plugin-env-parser": "^0.4.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^1.8.11"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node build/verifyCommit.js"
},
"lint-staged": {
"*": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
]
}