-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.78 KB
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
49
50
51
52
53
54
{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"test": "npm run lint:check && npm run format:check && npm run types && npm run test:unit",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"types": "tsc --noEmit",
"type-check": "tsc --noEmit",
"test:unit": "echo 'No unit tests configured yet' && exit 0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@headlessui/react": "^2.0.0",
"@inertiajs/react": "^2.3.17",
"@laravel/vite-plugin-wayfinder": "^0.1.7",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"axios": "^1.13.6",
"concurrently": "^9.0.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"laravel-echo": "^2.3.0",
"laravel-vite-plugin": "^2.0.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"pusher-js": "^8.4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.0",
"typescript": "^5.0.2",
"typescript-eslint": "^8.56.1",
"vite": "^7.0.7"
},
"dependencies": {
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"sonner": "^2.0.7"
}
}