-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 KB
/
package.json
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
{
"name": "leaf",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed": "tsx ./scripts/seed.ts",
"db:reset": "tsx ./scripts/reset.ts",
"db:studio": "npx drizzle-kit studio",
"db:push": "npx drizzle-kit push:pg"
},
"dependencies": {
"@clerk/nextjs": "^4.29.11",
"@neondatabase/serverless": "^0.9.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@react-three/drei": "^9.105.6",
"@react-three/fiber": "^8.16.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.7",
"framer-motion": "^11.2.4",
"lucide-react": "^0.364.0",
"mini-svg-data-uri": "^1.4.4",
"next": "^14.2.3",
"next-themes": "^0.3.0",
"ra-data-simple-rest": "^4.16.15",
"react": "^18",
"react-admin": "^4.16.15",
"react-circular-progressbar": "^2.1.0",
"react-confetti": "^6.1.0",
"react-dom": "^18",
"react-use": "^17.5.0",
"sonner": "^1.4.41",
"stripe": "^15.2.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"three": "^0.164.1",
"three-globe": "^2.31.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.20.17",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"pg": "^8.11.5",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"tsx": "^4.7.2",
"typescript": "^5"
}
}