forked from ayush-that/codejeet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) Β· 2.65 KB
/
package.json
File metadata and controls
95 lines (95 loc) Β· 2.65 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
93
94
95
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"heroku-postbuild": "npm run build",
"format": "prettier --write",
"format:check": "prettier --check",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"dependencies": {
"@clerk/nextjs": "^6.5.0",
"@clerk/themes": "^2.1.48",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@google/generative-ai": "^0.21.0",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.1.8",
"@next/third-parties": "15.4.1",
"@prisma/client": "^6.10.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@react-three/drei": "^9.117.3",
"@react-three/fiber": "^8.17.10",
"@supabase/supabase-js": "^2.50.0",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"csv-parse": "^5.6.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.44.2",
"framer-motion": "^11.12.0",
"lucide-react": "^0.460.0",
"next": "15.4.1",
"next-themes": "^0.4.3",
"node-fetch": "^3.3.2",
"postgres": "^3.4.7",
"prisma": "^6.10.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^7.5.3",
"react-spinners": "^0.14.1",
"react-syntax-highlighter": "^15.6.1",
"react-tweet": "^3.2.1",
"recharts": "^2.13.3",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"typewriter-effect": "^2.21.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/react-syntax-highlighter": "^15.5.13",
"drizzle-kit": "^0.31.1",
"eslint-config-next": "15.4.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8",
"prettier": "3.5.2",
"tailwindcss": "^3.4.1",
"tsx": "^4.20.3",
"typescript": "^5"
},
"overrides": {
"prismjs": "^1.30.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
}
}
}