-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.48 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
{
"name": "vue-h5-template",
"version": "0.5.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"dev": "vite --host",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"build:prod": "vite build --mode production",
"build:stage": "vite build --mode staging",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint src/ --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint-staged": "lint-staged",
"gen:api": "openapi-ts",
"format": "prettier --write src/"
},
"dependencies": {
"@iconify-json/ri": "^1.2.3",
"@tanstack/vue-query": "^5.60.6",
"@vueuse/core": "^11.2.0",
"axios": "^1.7.7",
"crypto-es": "^2.1.0",
"dayjs": "^1.11.13",
"lodash-es": "^4.17.21",
"pinia": "^2.2.6",
"rxjs": "^7.8.1",
"vant": "^4.9.9",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@hey-api/openapi-ts": "^0.57.0",
"@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.9.0",
"@unocss/preset-rem-to-px": "^0.64.0",
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vitest/eslint-plugin": "1.1.10",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.6.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"msw": "^2.6.6",
"postcss": "^8.4.49",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.3.3",
"sass": "^1.81.0",
"typescript": "~5.7.2",
"unocss": "^0.64.0",
"unplugin-auto-import": "^0.18.4",
"unplugin-icons": "^0.20.1",
"unplugin-vue-components": "^0.27.4",
"vconsole": "^3.15.1",
"vite": "^5.4.10",
"vite-plugin-pwa": "^0.21.0",
"vite-plugin-vconsole": "^2.1.1",
"vite-plugin-vue-devtools": "^7.5.4",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"*.{tsx,ts}": [
"prettier --write"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}