-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
{
"name": "vue3-vite-js-template",
"private": true,
"version": "0.0.1",
"author": {
"name": "coderminer",
"url": "https://github.com/coderminer"
},
"license": "MIT",
"keywords": [
"vue3",
"vite",
"tailwindcss",
"axios",
"template"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .vue,.js,.ts,.jsx,.tsx --fix src",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.26.1",
"pinia": "^2.0.13",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@vitejs/plugin-vue": "^2.3.1",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.6.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"vite": "^2.9.2"
},
"lint-staged": {
"*.{js,vue,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css,less,scss,md}": [
"prettier --write"
]
}
}