-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.53 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
{
"name": "azmuth",
"version": "0.1.0",
"private": true,
"description": "AI-powered developer learning platform - Named after Azmuth, the great scientist from Ben10",
"scripts": {
"dev": "concurrently --names next,ws --prefix-colors blue,green \"npm run dev:next\" \"npm run dev:ws\"",
"dev:next": "next dev",
"dev:ws": "npx tsx server/websocket.ts",
"build": "next build",
"postbuild": "node scripts/copy-public.js",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"ws": "npx tsx server/websocket.ts",
"seed:embeddings": "npx tsx scripts/seed-embeddings.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@monaco-editor/react": "^4.7.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.40.0",
"@tanstack/react-query": "^5.28.0",
"@types/pg": "^8.18.0",
"@xyflow/react": "^12.10.0",
"clsx": "^2.1.0",
"dotenv": "^17.3.1",
"lucide-react": "^0.344.0",
"megallm": "^2.5.9",
"next": "^14.2.35",
"openai": "^6.22.0",
"pg": "^8.19.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwind-merge": "^2.2.0",
"ws": "^8.16.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.0.1",
"concurrently": "^9.2.1",
"eslint": "^8",
"eslint-config-next": "^14.2.0",
"postcss": "^8",
"tailwindcss": "^3.4.0",
"typescript": "^5"
}
}