-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·112 lines (112 loc) · 3.29 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
{
"type": "module",
"version": "0.1.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"scripts": {
"dev": "vite",
"build:example": "vue-tsc && vite build --mode example",
"serve:example": "http-server ./dist-example -o",
"svgo": "svgo -f src/assets/icons",
"new": "plop",
"lint": "npm-run-all -s lint:tsc lint:eslint lint:stylelint",
"lint:tsc": "vue-tsc --noEmit",
"lint:eslint": "eslint . --cache --fix",
"lint:stylelint": "stylelint \"src/**/*.{css,scss,vue}\" --cache --fix",
"postinstall": "simple-git-hooks",
"preinstall": "npx only-allow pnpm",
"commit": "git cz",
"release": "bumpp"
},
"dependencies": {
"@headlessui/vue": "^1.7.22",
"@nutui/nutui": "^4.3.9",
"@nutui/touch-emulator": "^1.0.0",
"@visactor/vchart": "^1.11.3",
"@vueuse/core": "^10.11.0",
"@vueuse/integrations": "^10.11.0",
"animate.css": "^4.1.1",
"axios": "^1.7.2",
"dayjs": "^1.11.11",
"echarts": "^5.5.0",
"eruda": "^3.0.1",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"overlayscrollbars-vue": "^0.5.9",
"path-browserify": "^1.0.1",
"pinia": "^2.1.7",
"qrcode": "^1.5.3",
"qs": "^6.12.1",
"swiper": "^11.1.4",
"vconsole": "^3.15.1",
"vue": "^3.4.29",
"vue-esign": "^1.1.4",
"vue-m-message": "^4.0.2",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@iconify/json": "^2.2.219",
"@iconify/vue": "^4.1.2",
"@stylistic/stylelint-config": "^1.0.1",
"@types/archiver": "^6.0.2",
"@types/lodash-es": "^4.17.12",
"@types/mockjs": "^1.0.10",
"@types/nprogress": "^0.2.3",
"@types/path-browserify": "^1.0.2",
"@types/qrcode": "^1.5.5",
"@types/qs": "^6.9.15",
"@unocss/eslint-plugin": "^0.61.0",
"@unocss/preset-rem-to-px": "^0.61.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@yeungkc/unocss-preset-safe-area": "^0.0.6",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.19",
"boxen": "^7.1.1",
"bumpp": "^9.4.1",
"cz-git": "^1.9.3",
"eslint": "^9.5.0",
"http-server": "^14.1.1",
"lint-staged": "^15.2.7",
"npm-run-all2": "^6.2.0",
"picocolors": "^1.0.1",
"plop": "^4.0.1",
"postcss": "^8.4.38",
"postcss-mobile-forever": "^4.1.4",
"sass": "^1.77.5",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.6.1",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-scss": "^6.3.1",
"svgo": "^3.3.2",
"typescript": "^5.4.5",
"unocss": "^0.61.0",
"unplugin-auto-import": "^0.17.6",
"unplugin-turbo-console": "^1.8.6",
"unplugin-vue-components": "^0.27.0",
"unplugin-vue-router": "^0.9.1",
"vite": "^5.3.1",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-compression2": "^1.1.1",
"vite-plugin-fake-server": "^2.1.1",
"vite-plugin-pages": "^0.32.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^7.3.0",
"vue-tsc": "^2.0.21"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"preserveUnused": true
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}