generated from varletjs/varlet-app-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.7 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
{
"name": "varlet-app-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "vite",
"build": "vite build",
"build:test": "vite build --mode test",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write .",
"type-check": "vue-tsc --noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "cypress open",
"test:e2e-run": "cypress run",
"bump": "pnpm update @varlet/* --latest"
},
"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": {
"@material/material-color-utilities": "^0.2.7",
"@varlet/axle": "^0.9.3",
"@varlet/bounce-fixer": "^0.0.3",
"@varlet/touch-emulator": "3.7.0",
"@varlet/ui": "3.7.0",
"@varlet/use": "3.7.0",
"@vueuse/core": "^10.5.0",
"color": "^4.2.3",
"dayjs": "^1.11.8",
"mockjs": "^1.1.0",
"pinia": "^2.1.3",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@iconify-json/mdi": "^1.1.54",
"@types/color": "^3.0.6",
"@types/mockjs": "^1.0.7",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@unocss/preset-rem-to-px": "^0.58.2",
"@varlet/import-resolver": "3.7.0",
"@vitejs/plugin-vue": "^5.0.0",
"@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": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"jsdom": "^21.0.0",
"less": "^4.1.3",
"lint-staged": "^13.2.2",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1",
"typescript": "5.0.2",
"unocss": "^0.58.2",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vite-bundle-analyzer": "^0.6.1",
"vite-plugin-compression2": "^0.10.1",
"vite-plugin-eruda": "^1.0.1",
"vite-plugin-pages": "^0.29.0",
"vite-plugin-progress": "^0.0.7",
"vitest": "^1.1.0",
"vue-tsc": "^1.8.27"
},
"packageManager": "pnpm@9.1.1",
"engines": {
"pnpm": ">=9.0"
}
}