-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.75 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
{
"name": "admin",
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"license": "MIT",
"private": false,
"author": "qmhc",
"description": "A management system template for Vexip UI",
"scripts": {
"build": "vite build",
"create-business": "tsx scripts/create-business.ts",
"dev": "vite",
"lint": "eslint --cache --fix \"**/*.{js,cjs,mjs,ts,tsx,json,vue}\"",
"lint:style": "stylelint --cache --fix \"**/*.{vue,css,scss}\"",
"precommit": "lint-staged -c ./.husky/.lintstagedrc -q --allow-empty",
"prepare": "is-ci || husky install",
"prettier": "prettier --write \"**/*.{js,cjs,mjs,ts,json,css,scss,vue,html,md}\"",
"preview": "vite preview",
"schema2ts": "json2ts -i src/config/schema/app-settings.schema.json -o types/schema.d.ts --style.singleQuote --no-style.semi"
},
"dependencies": {
"@vexip-ui/hooks": "^2.8.0",
"@vexip-ui/icons": "^1.2.1",
"@vexip-ui/utils": "^2.16.1",
"@vueuse/core": "^12.5.0",
"@wangeditor/editor": "^5.1.23",
"axios": "^1.7.9",
"js-cookie": "^3.0.5",
"nprogress": "^0.2.0",
"pinia": "^2.3.0",
"screenfull": "^6.0.2",
"vexip-ui": "^2.3.23",
"vue": "^3.5.13",
"vue-i18n": "^11.0.1",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/types": "^19.5.0",
"@faker-js/faker": "^9.3.0",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/eslint": "^8.56.10",
"@types/fs-extra": "^11.0.4",
"@types/js-cookie": "^3.0.6",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.5",
"@types/prompts": "^2.4.9",
"@vexip-ui/commitlint-config": "^0.5.0",
"@vexip-ui/eslint-config": "^0.12.1",
"@vexip-ui/plugins": "^1.7.0",
"@vexip-ui/prettier-config": "^1.0.0",
"@vexip-ui/stylelint-config": "^1.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/runtime-core": "^3.5.13",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-define-config": "^2.1.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"json-schema-to-typescript": "^15.0.4",
"kolorist": "^1.8.0",
"lint-staged": "^15.3.0",
"minimist": "^1.2.8",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"prompts": "^2.4.2",
"sass-embedded": "^1.83.2",
"stylelint": "^16.12.0",
"stylelint-prettier": "^5.0.2",
"tsx": "^4.19.2",
"typescript": "~5.7.3",
"unocss": "^65.4.3",
"unplugin-auto-import": "^19.0.0",
"unplugin-icons": "^22.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.7",
"vite-plugin-vue-images": "^0.6.1",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^2.2.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}