-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.83 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.83 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
{
"name": "junction24",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "next lint && tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/server/db/seed.ts",
"db:seed:items:locations": "tsx src/server/db/itemLocation.ts",
"dev": "next dev --turbo",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache"
},
"dependencies": {
"@clerk/nextjs": "^6.2.1",
"@openai/realtime-api-beta": "github:openai/openai-realtime-api-beta",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/typography": "^0.5.15",
"@types/mapbox-gl": "^3.4.1",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@uploadthing/react": "^7.1.1",
"@vercel/postgres": "^0.10.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.36.1",
"framer-motion": "^11.11.11",
"geist": "^1.3.1",
"lucide-react": "^0.455.0",
"mapbox-gl": "^3.7.0",
"next": "^15.0.3",
"next-themes": "^0.4.3",
"openai": "^4.71.1",
"postgres": "^3.4.5",
"react": "^18.3.1",
"react-camera-pro": "^1.4.0",
"react-dom": "^18.3.1",
"react-map-gl": "^7.1.7",
"react-markdown": "^9.0.1",
"react-toastify": "^10.0.6",
"remark-gfm": "^4.0.0",
"server-only": "^0.0.1",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^7.3.0",
"uuid": "^11.0.2",
"ws": "^8.18.0",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"drizzle-kit": "^0.28.0",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"ct3aMetadata": {
"initVersion": "7.38.1"
},
"packageManager": "pnpm@9.12.3"
}