-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 983 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
34
35
36
37
38
39
40
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"prepare": "husky install"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"alpinejs": "^3.10.4",
"autoprefixer": "^10.4.0",
"blade-formatter": "^1.41.1",
"choices.js": "^10.1.0",
"husky": "^8.0.3",
"imask": "^6.6.3",
"laravel-vite-plugin": "^1.0",
"lint-staged": "^13.3.0",
"postcss": "^8.4.28",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.0",
"terser": "^5.19.2",
"vite": "^5.0"
},
"lint-staged": {
"*.php": [
"./vendor/bin/pint"
],
"*.blade.php": [
"blade-formatter --write"
],
"*.{js,css,md,yml}": [
"prettier --write"
]
},
"dependencies": {
"echarts": "^5.5"
}
}