-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.78 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
113
114
115
116
117
118
119
120
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vite-vuetify-ts-starter",
"description": "Vue3 Vuetify TypeScript Startar project for Vite.",
"version": "1.13.0",
"license": "MIT",
"type": "module",
"private": true,
"author": {
"name": "Logue",
"email": "[email protected]",
"url": "https://logue.dev/"
},
"homepage": "https://github.com/logue/vite-vuetify-ts-starter",
"repository": {
"type": "git",
"url": "[email protected]:logue/vite-vuetify-ts-starter.git"
},
"bugs": {
"url": "https://github.com/logue/vite-vuetify-ts-starter/issues"
},
"engines": {
"node": ">=20.1.3"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"clean": "rimraf ./node_modules/.vite",
"build": "run-p type-check \"build-only {@}\" --",
"build:analyze": "vite build --mode analyze",
"build:clean": "rimraf dist",
"lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . -w -u",
"lint:style": "stylelint \"./**/*.{css,sass,scss,htm,html,vue}\" --fix --cache-location ./node_modules/.vite/vite-plugin-stylelint && prettier \"./**/*.{css,sass,scss,htm,html,vue}\" -w -u",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"prepare": "husky"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"axios": "^1.7.7",
"core-js": "^3.38.1",
"fuse.js": "^7.0.0",
"pinia": "^2.2.4",
"pinia-plugin-persistedstate": "^4.1.1",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vuetify": "^3.7.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node-lts": "^20.1.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.7",
"@types/webfontloader": "^1.6.38",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.13.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vue": "^9.29.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-vuetify": "^2.4.0",
"eslint-plugin-yaml": "^1.0.3",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.4",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-order": "^6.0.4",
"typescript": "~5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vite-plugin-checker": "0.8.0",
"vite-plugin-vue-devtools": "^7.5.2",
"vite-plugin-vuetify": "^2.0.4",
"vue-tsc": "^2.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,yaml,yml,vue,htm,html,md}": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint",
"*.{css,sass,scss,vue,htm,html}": "stylelint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-stylelint",
"*": "prettier -w -u"
},
"resolutions": {
"braces": ">=3.0.3",
"get-func-name": ">=2.0.2",
"ip": ">=2.0.1",
"json5": ">=2.2.3",
"lodash": ">=4.17.21",
"postcss": ">=8.4.31",
"semver": ">=7.5.3",
"tar": ">=6.2.1",
"vite": ">=5.0.12",
"ws": ">=8.17.1",
"yaml": ">=2.3.2"
},
"stackblitz": {
"startCommand": "pnpm run test:unit"
}
}