-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.09 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
{
"name": "vue3-ts-tailwind-starter",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "npm run dev",
"lint": "eslint . --ext .js,.ts,.vue",
"lint:fix": "eslint . --ext .js,.ts,.vue --fix",
"prepare": "husky install"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@vitejs/plugin-vue": "^2.2.2",
"daisyui": "^3.1.0",
"tailwindcss": "^3.3.2",
"vue": "^3.2.31",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"eslint": "^8.9.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"postcss": "^8.4.23",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"vite": "^2.8.4"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}