forked from two-beards/box-shadows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 894 Bytes
/
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
{
"name": "box-shadows",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"prepare": "husky install",
"format": "prettier --write --ignore-unknown ."
},
"dependencies": {
"@headlessui/vue": "^1.2.0",
"klona": "^2.0.0",
"vue": "^3.0.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.4.4",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.12",
"prettier": "2.7.1",
"prismjs": "^1.23.0",
"tailwindcss": "^3.0.24",
"vite": "^3.1.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,css,md}": "prettier --write"
}
}