-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.28 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.28 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
99
{
"name": "nextjs-shadcn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0 --turbopack",
"build": "next build && npm run build:supabase",
"build:no-lint": "next build --no-lint && npm run build:supabase",
"start": "next start",
"lint": "bunx tsc --noEmit && next lint",
"format": "bunx biome format --write",
"build:supabase": "echo 'Building for Supabase deployment...'",
"deploy:supabase": "supabase functions deploy",
"deploy:functions": "supabase functions deploy --project-ref $SUPABASE_PROJECT_REF",
"setup:supabase": "supabase db push && supabase db seed",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:reset": "supabase db reset",
"supabase:login": "supabase login",
"supabase:link": "supabase link",
"postbuild": "echo 'Build completed successfully for ConstructAI Platform - Ready for Supabase deployment'"
},
"dependencies": {
"@auth/supabase-adapter": "^1.10.0",
"@google/generative-ai": "^0.24.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.50.4",
"@techstark/opencv-js": "^4.9.0-release.1",
"@tldraw/tldraw": "^3.14.1",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/sharp": "^0.32.0",
"@types/three": "^0.178.1",
"@types/uuid": "^10.0.0",
"axios": "^1.7.9",
"bcryptjs": "^3.0.2",
"bryntum-gantt": "^2.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"form-data": "^4.0.3",
"framer-motion": "^12.23.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.525.0",
"multer": "^2.0.1",
"next": "^15.3.2",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"openai": "^5.8.3",
"prosemirror-model": "^1.25.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.40.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-gantt-timeline": "^0.4.3",
"same-runtime": "^0.0.1",
"sharp": "^0.34.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"tesseract.js": "^6.0.1",
"three": "^0.178.0",
"uuid": "^11.1.0",
"web-ifc": "^0.0.69",
"web-ifc-three": "^0.0.126",
"y-indexeddb": "^9.0.12",
"y-prosemirror": "^1.3.7",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^20.17.50",
"@types/react": "^18.3.22",
"@types/react-dom": "^18.3.7",
"eslint": "^9.27.0",
"eslint-config-next": "15.1.7",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}