-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
89 lines (89 loc) · 2.6 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
{
"name": "varlet-app-template",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:test": "vite build --mode test",
"bump": "pnpm update @varlet/* @configurajs/* rattail --latest",
"dev": "vite",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "cypress open",
"test:e2e-run": "cypress run",
"type-check": "vue-tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --allow-empty --concurrent false",
"commit-msg": "pnpm exec commitlint -e $1"
},
"lint-staged": {
"*.${vue,ts,tsx,js,jsx,less,css}": "pnpm format",
"*.{vue,ts,tsx,js,jsx}": "pnpm lint"
},
"dependencies": {
"@varlet/axle": "^0.10.1",
"@varlet/bounce-fixer": "^0.0.3",
"@varlet/touch-emulator": "3.8.2",
"@varlet/ui": "3.8.2",
"@varlet/use": "3.8.2",
"@vueuse/core": "^10.5.0",
"dayjs": "^1.11.8",
"mockjs": "^1.1.0",
"pinia": "^2.1.3",
"rattail": "1.0.18",
"shiki": "^1.22.0",
"vue": "^3.4.21",
"vue-i18n": "^9.10.1",
"vue-router": "^4.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@configurajs/eslint": "^0.0.14",
"@configurajs/prettier": "^0.1.0",
"@iconify-json/mdi": "^1.1.54",
"@types/mockjs": "^1.0.7",
"@types/node": "^20.2.5",
"@unocss/preset-rem-to-px": "^0.58.2",
"@varlet/import-resolver": "3.8.2",
"@varlet/preset-unocss": "3.8.2",
"@varlet/unplugin-icon-builder": "0.6.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-istanbul": "1.1.0",
"@vue/test-utils": "^2.4.3",
"cypress": "^13.3.2",
"cypress-vite": "^1.5.0",
"eslint": "^9.17.0",
"jsdom": "^21.0.0",
"less": "^4.1.3",
"lint-staged": "^13.2.2",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^3.1.0",
"simple-git-hooks": "^2.8.1",
"typescript": "5.0.2",
"unocss": "^0.58.2",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.0.10",
"vite-bundle-analyzer": "^0.6.1",
"vite-plugin-compression2": "^0.10.1",
"vite-plugin-eruda": "^1.0.1",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-vue-layouts": "^0.11.0",
"vitest": "^1.1.0",
"vue-tsc": "^1.8.27"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=9.0"
}
}