-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build && vite build --ssr",
"dev": "vite",
"prepare": "husky",
"format": "prettier --write {./app/**/*.php,./resources/**/*.{tsx,css}}",
"check-format": "prettier --check {./app/**/*.php,./resources/**/*.{tsx,css}}"
},
"devDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@headlessui/react": "^2.0.0",
"@heroicons/react": "^2.1.5",
"@inertiajs/react": "^1.0.0",
"@prettier/plugin-php": "^0.22.2",
"@tailwindcss/forms": "^0.5.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.13.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.4",
"concurrently": "^9.0.1",
"husky": "^9.1.7",
"laravel-vite-plugin": "^1.0",
"lint-staged": "^15.2.10",
"lodash-es": "^4.17.21",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-classnames": "^0.7.4",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.5",
"react-toastify": "^10.0.6",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.15",
"typescript": "^5.0.2",
"vite": "^5.0"
},
"lint-staged": {
"**/*": "prettier --write {./app/**/*.php,./resources/**/*.{tsx,css}} --ignore-unknown"
}
}