-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"private": true,
"type": "module",
"scripts": {
"build": "vite build && vite build --ssr",
"dev": "vite"
},
"devDependencies": {
"@prettier/plugin-php": "^0.22.4",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.15",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"@types/lodash": "^4.17.16",
"@types/react": "^18.3.19",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"axios": "^1.8.4",
"concurrently": "^9.0.1",
"laravel-vite-plugin": "^1.2.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.2",
"vite": "^6.0.0"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@inertiajs/react": "^2.0.0",
"@inertiajs/server": "^0.1.0",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ziggy-js": "^2.5.2"
},
"prettier": {
"semi": true,
"singleQuote": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80,
"arrowParens": "avoid"
}
}