-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "friday-visual-engine",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "FRIDAY - Immersive engineering visual intelligence engine powered by Gemini 3.1 Pro",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@google/genai": "^1.31.0",
"@react-three/cannon": "^6.6.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@supabase/supabase-js": "^2.45.0",
"@vercel/node": "^5.7.4",
"framer-motion": "^12.23.25",
"lucide-react": "^0.556.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"three": "^0.181.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/three": "^0.181.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/ui": "^2.1.0",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^25.0.0",
"prettier": "^3.3.0",
"typescript": "~5.8.2",
"vercel": "^50.4.0",
"vite": "^6.2.0",
"vitest": "^2.1.0"
},
"overrides": {
"undici": ">=7.24.1",
"protobufjs": ">=7.5.5",
"@fastify/busboy": ">=3.2.0"
}
}