-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 3.46 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
{
"name": "vite-vue3-ts-starter",
"version": "1.13.3",
"description": "Vue3 Vuetify TypeScript Startar project for Vite.",
"license": "MIT",
"type": "module",
"private": true,
"author": {
"name": "Logue",
"email": "[email protected]",
"url": "https://logue.dev/"
},
"homepage": "https://github.com/logue/vite-vue3-ts-starter",
"repository": {
"type": "git",
"url": "[email protected]:logue/vite-vue3-ts-starter.git"
},
"bugs": {
"url": "https://github.com/logue/vite-vue3-ts-starter/issues"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.13.2"
},
"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",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"prepare": "husky"
},
"dependencies": {
"pinia": "^2.2.6",
"pinia-plugin-persistedstate": "^4.1.3",
"vue": "^3.5.13",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.48.2",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node-lts": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/coverage-v8": "^2.1.5",
"@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",
"eslint": "^9.14.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-playwright": "^2.0.1",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yaml": "^1.0.3",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.1",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.81.0",
"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.14.0",
"vite": "^5.4.11",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-vue-devtools": "^7.6.4",
"vitest": "^2.1.5",
"vue-tsc": "^2.1.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,yaml,yml,yaml,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": {
"json5": ">=2.2.3",
"yaml": ">=2.3.2"
},
"stackblitz": {
"startCommand": "pnpm run test:unit"
}
}