package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "$schema": "https://www.schemastore.org/package.json",
  3. "private": true,
  4. "type": "module",
  5. "scripts": {
  6. "build": "vite build",
  7. "build:ssr": "vite build && vite build --ssr",
  8. "dev": "vite",
  9. "format": "prettier --write resources/",
  10. "format:check": "prettier --check resources/",
  11. "lint": "eslint . --fix",
  12. "lint:check": "eslint .",
  13. "types:check": "tsc --noEmit"
  14. },
  15. "devDependencies": {
  16. "@eslint/js": "^9.19.0",
  17. "@laravel/vite-plugin-wayfinder": "^0.1.3",
  18. "@stylistic/eslint-plugin": "^5.10.0",
  19. "@types/node": "^22.13.5",
  20. "babel-plugin-react-compiler": "^1.0.0",
  21. "eslint": "^9.17.0",
  22. "eslint-config-prettier": "^10.0.1",
  23. "eslint-import-resolver-typescript": "^4.4.4",
  24. "eslint-plugin-import": "^2.32.0",
  25. "eslint-plugin-react": "^7.37.3",
  26. "eslint-plugin-react-hooks": "^7.0.0",
  27. "prettier": "^3.4.2",
  28. "prettier-plugin-tailwindcss": "^0.6.11",
  29. "typescript-eslint": "^8.23.0"
  30. },
  31. "dependencies": {
  32. "@inertiajs/react": "^3.0.0",
  33. "@inertiajs/vite": "^3.0.0",
  34. "@tailwindcss/vite": "^4.1.11",
  35. "@types/react": "^19.2.0",
  36. "@types/react-dom": "^19.2.0",
  37. "@vitejs/plugin-react": "^5.2.0",
  38. "class-variance-authority": "^0.7.1",
  39. "clsx": "^2.1.1",
  40. "concurrently": "^9.0.1",
  41. "globals": "^15.14.0",
  42. "laravel-vite-plugin": "^3.0.0",
  43. "react": "^19.2.0",
  44. "react-dom": "^19.2.0",
  45. "tailwind-merge": "^3.0.1",
  46. "tailwindcss": "^4.0.0",
  47. "typescript": "^5.7.2",
  48. "vite": "^8.0.0"
  49. },
  50. "optionalDependencies": {
  51. "@rollup/rollup-linux-x64-gnu": "4.9.5",
  52. "@tailwindcss/oxide-linux-x64-gnu": "^4.0.1",
  53. "lightningcss-linux-x64-gnu": "^1.29.1"
  54. }
  55. }