generated from logue/vite-vue2-vuetify-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.9 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "vite-vue2-vuetify-ts-starter",
"description": "Vue2 Vuetify TypeScript Startar project for Vite.",
"version": "0.8.5",
"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": ">=16.17.0",
"yarn": ">=1.22.10"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"clean": "rimraf ./node_modules/.vite",
"lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . -w -u",
"lint:markup": "vue-tsc --noEmit",
"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",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "vue-tsc --noEmit && vite build",
"build:analyze": "vue-tsc --noEmit && vite build --mode analyze",
"build:deploy": "vite build",
"build:clean": "rimraf dist",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@logue/vue2-helpers": "^2.0.3",
"@mdi/font": "^7.0.96",
"vue": "^2.7.10",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.6.5",
"vue2-teleport": "^1.0.1",
"vuetify": "^2.6.10",
"vuex": "^3.6.2",
"vuex-persist": "^3.1.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/webfontloader": "^1.6.34",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-vue2": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^1.3.0",
"@vue/tsconfig": "^0.1.3",
"c8": "^7.12.0",
"eslint": "^8.23.1",
"eslint-config-google": "^0.14.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-jsonc": "^2.4.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vue": "^9.5.1",
"eslint-plugin-vuejs-accessibility": "^1.2.0",
"eslint-plugin-vuetify": "^1.1.0",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.5",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rollup-plugin-visualizer": "^5.8.1",
"sass": "1.32.12",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.8.3",
"unplugin-vue-components": "^0.22.7",
"vite": "^3.1.2",
"vite-plugin-checker": "^0.5.1",
"vitest": "^0.23.2",
"vue-eslint-parser": "^9.1.0",
"vue-template-compiler": "^2.7.10",
"vue-tsc": "^0.40.13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.vue": "vue-tsc --noEmit",
"*.{js,ts,json,jsonc,json5,yaml,yml,toml,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": {
"prettier": "^2.7.1"
},
"stackblitz": {
"startCommand": "yarn run test"
}
}