-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "code_compass",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"ci": "npm run lint && npm run typecheck && npm run build",
"drizzle:generate": "drizzle-kit generate",
"drizzle:push": "drizzle-kit push",
"drizzle:studio": "drizzle-kit studio",
"drizzle:migrate": "drizzle-kit migrate",
"drizzle:seed": "tsx drizzle/seed.ts"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@types/nodemailer": "^6.4.17",
"@vercel/postgres": "^0.10.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.7.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",
"next-cloudinary": "^6.16.0",
"nodemailer": "^7.0.5",
"pg": "^8.16.0",
"postgres": "^3.4.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"swiper": "^11.2.10",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-textshadow": "^2.1.3",
"tsx": "^4.20.2",
"zod": "^3.23.8"
},
"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"
}
}