-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
118 lines (118 loc) · 3.21 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "vite-vue-template",
"version": "2.2.1",
"description": "vite-vue-template",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/xinlei3166/vite-vue-template.git"
},
"keywords": [
"vue",
"nuxt",
"ant-design-vue",
"typescript",
"monorepo"
],
"author": "君惜",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"release": "yunque-release --skipBuild",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@packages/components": "workspace:*",
"@packages/hooks": "workspace:*",
"@packages/lib": "workspace:*",
"@packages/plugins": "workspace:*",
"@packages/styles": "workspace:*",
"@packages/token": "workspace:*",
"@packages/types": "workspace:*",
"@packages/utils": "workspace:*",
"@vueuse/components": "^10.9.0",
"@vueuse/core": "^10.9.0",
"animate.css": "^4.1.1",
"ant-design-vue": "^4.1.2",
"await-to-js": "^3.0.0",
"axios": "^1.6.8",
"cos-js-sdk-v5": "^1.7.0",
"dayjs": "^1.11.10",
"echarts": "^5.5.0",
"js-cookie": "^3.0.5",
"mitt": "^3.0.1",
"nanoid": "^5.0.7",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persist": "^1.0.0",
"qs": "^6.12.0",
"sortablejs": "^1.15.2",
"vue": "^3.4.21",
"vue-echarts": "^6.6.9",
"vue-router": "^4.3.0",
"wujie": "^1.0.22",
"wujie-vue3": "^1.0.22"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/mockjs": "^1.0.10",
"@types/node": "^20.12.5",
"@types/nprogress": "^0.2.3",
"@types/qs": "^6.9.14",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@unocss/postcss": "^0.59.0",
"@unocss/preset-rem-to-px": "^0.59.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vueuse/shared": "^10.9.0",
"@yunquejs/release": "^0.1.9",
"autoprefixer": "^10.4.19",
"consola": "^3.2.3",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.2",
"mockjs": "^1.1.0",
"npm-run-all": "^4.1.5",
"picocolors": "latest",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"simple-git-hooks": "latest",
"ssh2-sftp-client": "^10.0.3",
"tsx": "latest",
"typescript": "^5.4.4",
"unocss": "^0.59.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.2.8",
"vite-plugin-html": "^3.2.2",
"vite-plugin-style-import": "^2.0.0",
"vue-eslint-parser": "^9.4.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec tsx scripts/verifyCommit.ts $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"umi"
]
}
}
}