-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "vue3template",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"eslint:comment": "使用 ESLint 检查并自动修复 src 目录下所有扩展名为 .js 和 .vue 的文件",
"eslint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"prettier:comment": "自动格式化当前目录下的所有文件",
"prettier": "prettier --write",
"commit:comment": "引导设置规范化的提交信息",
"commit": "git-cz",
"pub": "pub"
},
"dependencies": {
"@kjgl77/datav-vue3": "^1.7.1",
"vite": "^5.0.0",
"vue": "^3.3.8"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@iconify-json/ep": "^1.1.12",
"@pureadmin/release": "^1.0.0",
"@types/node": "^18.18.11",
"@vitejs/plugin-vue": "^4.5.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"autoprefixer": "^10.4.16",
"axios": "^1.6.2",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"dotenv": "^16.3.1",
"element-plus": "^2.4.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.15.3",
"unplugin-icons": "^0.16.6",
"unplugin-vue-components": "^0.24.1",
"vite-plugin-remove-console": "^2.1.1",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.22"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*/.{js,vue}": [
"eslint --fix",
"git add"
]
}
}