This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
generated from logue/vite-vue2-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
123 lines (123 loc) · 3.99 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
121
122
123
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vite-vue2-vuetify-ts-starter",
"description": "Vue2 Vuetify TypeScript Startar project for Vite.",
"version": "1.8.1",
"license": "MIT",
"type": "module",
"private": true,
"author": {
"name": "Logue",
"email": "[email protected]",
"url": "https://logue.dev/"
},
"homepage": "https://github.com/logue/vite-vue2-vuetify-ts-starter",
"repository": {
"type": "git",
"url": "[email protected]:logue/vite-vue2-vuetify-ts-starter.git"
},
"bugs": {
"url": "https://github.com/logue/vite-vue2-vuetify-ts-starter/issues"
},
"engines": {
"node": ">=18.12.5",
"yarn": ">=1.22.19"
},
"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",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"postinstall": "patch-package",
"prepare": "husky install"
},
"dependencies": {
"@logue/vue2-helpers": "^2.2.2",
"@mdi/font": "^7.3.67",
"patch-package": "^8.0.0",
"vue": "^2.7.16",
"vue-router": "^3.6.5",
"vuetify": "^2.7.1",
"vuex": "^3.6.2",
"vuex-persist": "^3.1.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.6.1",
"@tsconfig/node-lts": "^20.1.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.5",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@vitejs/plugin-vue2": "^2.3.1",
"@vitest/coverage-c8": "^0.33.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^1.3.5",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vue": "latest",
"eslint-plugin-vuejs-accessibility": "^2.2.0",
"eslint-plugin-vuetify": "^1.1.0",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"rollup-plugin-visualizer": "^5.11.0",
"sass": "1.32.12",
"stylelint": "^16.0.2",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-order": "^6.0.4",
"typescript": "latest",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vite-plugin-checker": "^0.6.2",
"vitest": "^1.1.0",
"vue-eslint-parser": "^9.3.2",
"vue-template-compiler": "^2.7.15",
"vue-tsc": "^1.8.26",
"vuetify2-component-types": "^2.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,yaml,yml,toml,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",
"postcss": "^8.4.31",
"semver": "^7.5.3",
"yaml": "^2.3.2"
},
"stackblitz": {
"startCommand": "yarn run test:unit"
}
}