-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.67 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
{
"name": "code_compass",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"drizzle:generate": "drizzle-kit generate",
"drizzle:push": "drizzle-kit push",
"drizzle:studio": "drizzle-kit studio",
"drizzle:migrate": "drizzle-kit migrate",
"db:push": "npx -r dotenv/config drizzle-kit push",
"seed": "npx tsx drizzle/seed-category.ts",
"db:generate": "npx -r dotenv/config drizzle-kit generate",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.6.5",
"@radix-ui/react-tabs": "^1.1.12",
"@vercel/postgres": "^0.10.0",
"clsx": "^2.1.1",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.40.1",
"firebase": "^11.3.1",
"firebase-admin": "^13.2.0",
"framer-motion": "^12.4.3",
"lucide-react": "^0.469.0",
"next": "^15.1.4",
"pg": "^8.16.0",
"postgres": "^3.4.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-textshadow": "^2.1.3",
"tsx": "^4.20.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20.17.19",
"@types/pg": "^8.15.4",
"@types/react": "19.0.8",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "5.7.3",
"wrangler": "^4.28.1"
}
}