-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "joevingracien.com",
"version": "3.0.0",
"authors": [
"Joevin Gracien <https://twitter.com/joevingracien>"
],
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"deploy": "npm run build && wrangler deploy",
"preview": "vite preview",
"lint": "oxlint src/",
"lint:fix": "oxlint src/ --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@cloudflare/vite-plugin": "^1.19.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-router": "^1.141.6",
"@tanstack/react-start": "^1.141.7",
"@types/three": "^0.182.0",
"@vitejs/plugin-react": "^5.1.2",
"clsx": "^2.1.1",
"motion": "^12.23.26",
"nice-color-palettes": "^4.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"three": "^0.182.0",
"vite": "npm:rolldown-vite@latest"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251217.0",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "^1.0.0",
"oxlint": "^1.0.0",
"typescript": "^5.9.3",
"vite-plugin-glsl": "^1.5.5",
"vite-tsconfig-paths": "^6.0.3",
"wrangler": "^4.56.0"
},
"overrides": {
"@react-three/drei": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}