-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.52 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
{
"name": "cortex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:start": "npx supabase start",
"db:stop": "npx supabase stop",
"db:reset": "npx supabase db reset",
"db:migrate": "npx supabase db push",
"db:migration:new": "npx supabase migration new",
"db:gen-types": "npx supabase gen types typescript --local > src/lib/supabase/database.types.ts",
"db:seed": "npx supabase db reset --seed-only",
"predev:all": "npx supabase status > /dev/null 2>&1 || npx supabase start",
"dev:all": "concurrently -k -p \"{name}\" -c \"cyan,magenta,yellow\" -n \"next,inngest,extractor\" \"npm run dev\" \"npx inngest-cli@latest dev -u http://localhost:3000/api/inngest\" \"cd services/extractor && uv run uvicorn main:app --host 0.0.0.0 --port 8100 --reload\"",
"dev:inngest": "npx inngest-cli@latest dev -u http://localhost:3000/api/inngest",
"dev:extractor": "cd services/extractor && uv run uvicorn main:app --host 0.0.0.0 --port 8100 --reload"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.95.3",
"@tailwindcss/typography": "^0.5.19",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.33.0",
"inngest": "^3.51.0",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"openai": "^6.22.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"undici": "^7.22.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}