-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"packageManager": "bun@1.3.10",
"scripts": {
"build": "vite build",
"build:ssr": "vite build && vite build --ssr",
"dev": "vite",
"format": "prettier --write resources/",
"format:check": "prettier --check resources/",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"types": "tsc --noEmit",
"quality": "prettier --write resources/ && eslint . --fix && tsc --noEmit"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@laravel/vite-plugin-wayfinder": "^0.1.3",
"@types/dompurify": "^3.2.0",
"@types/node": "^26.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript-eslint": "^8.65.0"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@headlessui/react": "^2.2.10",
"@hello-pangea/dnd": "^18.0.1",
"@heroicons/react": "^2.2.0",
"@icons-pack/react-simple-icons": "^13.13.0",
"@inertiajs/react": "^2.0.0",
"@laravel/passkeys": "^0.4.0",
"@radix-ui/react-avatar": "^1.2.6",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-collapsible": "^1.1.20",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-label": "^2.1.15",
"@radix-ui/react-navigation-menu": "^1.2.22",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-separator": "^1.1.15",
"@radix-ui/react-slot": "^1.3.3",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-toggle": "^1.1.18",
"@radix-ui/react-toggle-group": "^1.1.19",
"@radix-ui/react-tooltip": "^1.2.16",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@types/marked": "^6.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.0",
"@uiw/react-codemirror": "^4.25.11",
"@vitejs/plugin-react": "^6.0.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^10.0.4",
"dompurify": "^3.4.12",
"dotenv": "^17.4.2",
"globals": "^17.8.0",
"highlight.js": "^11.11.1",
"input-otp": "^1.4.2",
"laravel-vite-plugin": "^3.1",
"lucide-react": "^1.28.0",
"marked": "^18.0.7",
"marked-footnote": "^1.4.0",
"marked-gfm-heading-id": "^4.1.4",
"marked-highlight": "^2.2.4",
"mermaid": "^11.16.0",
"radix-ui": "^1.6.7",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sileo": "^0.1.5",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6",
"vite": "^8.1.5",
"vite-plugin-webfont-dl": "^3.12.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.62.3",
"@rollup/rollup-win32-x64-msvc": "4.62.3",
"@tailwindcss/oxide-linux-x64-gnu": "^4.3.3",
"@tailwindcss/oxide-win32-x64-msvc": "^4.3.3",
"lightningcss-linux-x64-gnu": "^1.33.0",
"lightningcss-win32-x64-msvc": "^1.33.0"
}
}