-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "vue3-ts-vite",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"push": "bash bash-push.sh",
"deploy": "bash bash-deploy.sh"
},
"dependencies": {
"vue": "^3.2.33",
"vue-router": "^4.0.15",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/node": "^14.18.16",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^1.10.2",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-sfc": "3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"autoprefixer": "^9.8.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "7.4.1",
"gh-pages": "^3.2.3",
"sass": "^1.51.0",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vue-eslint-parser": "^7.11.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"lint-staged": {
"src/**/*.{js,vue,jsx,ts,tsx}": [
"eslint --fix"
]
}
}