forked from zmtlwzy/zmtlwzy-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
164 lines (164 loc) · 4.84 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "zmtlwzy-admin",
"version": "0.2.5",
"author": {
"name": "zmtlwzy",
"email": "[email protected]",
"url": "https://github.com/zmtlwzy"
},
"homepage": "https://github.com/zmtlwzy/zmtlwzy-admin",
"repository": {
"url": "https://github.com/zmtlwzy/zmtlwzy-admin.git"
},
"bugs": {
"url": "https://github.com/zmtlwzy/zmtlwzy-admin/issues"
},
"keywords": [
"Vue3",
"vue-admin",
"Vite3",
"TypeScript",
"NaiveUI",
"naive-ui",
"UnoCSS",
"unocss"
],
"scripts": {
"dev": "vite --host",
"build": "cross-env NODE_ENV=production vite build && esno ./build/script/postBuild.ts",
"preview": "pnpm run build && vite preview --host",
"preview:dist": "vite preview --host",
"vtsc": "vue-tsc --noEmit --skipLibCheck",
"lint": "eslint ./src --ext .vue,.js,jsx,.ts,tsx",
"lint:fix": "eslint --fix ./src --ext .vue,.js,jsx,.ts,tsx",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
"lint:sfix": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"test": "vitest --mode development",
"server:upload": "pnpm run --dir ./test/server start",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:lock": "rimraf yarn.lock && rimraf pnpm-lock.yaml && rimraf package.lock.json",
"clean:lib": "rimraf node_modules",
"clean": "pnpm clean:lock && pnpm clean:lib",
"release": "standard-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"dependencies": {
"@faker-js/faker": "^7.5.0",
"@iconify/iconify": "^2.2.1",
"@vueuse/core": "^9.1.1",
"axios": "0.27.2",
"crypto-js": "^4.1.1",
"echarts": "^5.3.3",
"highlight.js": "^11.6.0",
"lodash-es": "^4.17.21",
"msw": "^0.46.1",
"path-to-regexp": "^6.2.1",
"pinia": "^2.0.21",
"qrcode": "^1.5.1",
"qs": "^6.11.0",
"tinycolor2": "^1.4.2",
"vue": "^3.2.38",
"vue-i18n": "~9.2.2",
"vue-router": "^4.1.5",
"vue-slicksort": "^2.0.0-alpha.5",
"vue-types": "^4.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@iconify/json": "^2.1.102",
"@iconify/vue": "^3.2.1",
"@types/crypto-js": "^4.1.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.14",
"@types/qrcode": "^1.5.0",
"@types/qs": "^6.9.7",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@unocss/reset": "^0.45.14",
"@vitejs/plugin-vue": "^3.0.3",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vueuse/math": "^9.1.1",
"autoprefixer": "^10.4.8",
"chalk": "^5.0.1",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"date-fns": "^2.29.2",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.4.0",
"esno": "^0.16.3",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"naive-ui": "^2.33.2",
"postcss": "^8.4.16",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.8.2",
"unocss": "^0.45.14",
"unplugin-auto-import": "^0.11.2",
"unplugin-icons": "^0.14.9",
"unplugin-vue-components": "^0.22.4",
"unplugin-vue-macros": "^0.11.1",
"vfonts": "^0.1.0",
"vite": "^3.0.9",
"vite-plugin-html": "^3.2.0",
"vitest": "^0.22.1",
"vue-tsc": "^0.40.5"
},
"license": "MIT",
"msw": {
"workerDirectory": "public"
}
}