-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.57 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
119
120
121
122
123
124
125
126
{
"name": "v3-admin-template",
"private": true,
"version": "0.0.8",
"description": "v3-admin-template 开源管理系统",
"author": {
"name": "WenReq",
"email": "[email protected]",
"url": "https://github.com/WenReq"
},
"license": "MIT",
"homepage": "https://github.com/WenReq/v3-admin",
"repository": {
"type": "git",
"url": "[email protected]:WenReq/v3-admin.git"
},
"bugs": {
"url": "https://github.com/WenReq/v3-admin/issues"
},
"scripts": {
"dev": "vite",
"serve": "vite",
"build:dev": "vue-tsc && vite build --mode development",
"build:test": "vue-tsc && vite build --mode test",
"build:pro": "vue-tsc && vite build --mode production",
"type-check": "vue-tsc --noEmit --skipLibCheck",
"preview": "npm run build:dev && vite preview",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged",
"prepare": "husky install",
"release": "standard-version",
"commit": "git add -A && git-cz && git pull && git push"
},
"dependencies": {
"@babel/core": "^7.23.0",
"@element-plus/icons-vue": "^2.1.0",
"@vueuse/core": "^9.13.0",
"axios": "^1.3.4",
"dayjs": "^1.11.9",
"element-plus": "^2.2.33",
"md5": "^2.3.0",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.32",
"pinia-plugin-persistedstate": "^3.2.0",
"print-js": "^1.6.0",
"qs": "^6.11.0",
"screenfull": "^6.0.2",
"sortablejs": "^1.15.0",
"vite-plugin-inspect": "^0.7.38",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@iconify-json/ic": "^1.1.13",
"@types/md5": "^2.3.2",
"@types/node": "^18.14.6",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7",
"@types/sortablejs": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@unocss/preset-attributify": "^0.50.4",
"@unocss/preset-icons": "^0.50.4",
"@unocss/preset-uno": "^0.50.4",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cz-git": "^1.5.3",
"czg": "^1.7.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"postcss": "^8.4.27",
"postcss-html": "^1.5.0",
"prettier": "^2.8.4",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.58.3",
"standard-version": "^9.5.0",
"stylelint": "^15.10.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"typescript": "^4.5.4",
"unocss": "^0.50.4",
"unplugin-vue-setup-extend-plus": "^1.0.0",
"vite": "^4.1.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pwa": "^0.16.4",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^1.0.24"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": {
"production": [
"> 1%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}