-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.77 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": "shecents",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:studio": "npx drizzle-kit studio",
"db:push": "npx drizzle-kit push:pg",
"db:seed": "tsx ./scripts/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^4.30.1",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@neondatabase/serverless": "^0.9.1",
"@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",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.8",
"framer-motion": "^11.2.2",
"lucide-react": "^0.366.0",
"next": "14.1.4",
"next-themes": "^0.3.0",
"ra-data-simple-rest": "^4.16.17",
"react": "^18",
"react-admin": "^4.16.17",
"react-circular-progressbar": "^2.1.0",
"react-confetti": "^6.1.0",
"react-dom": "^18",
"react-ga4": "^2.1.0",
"react-icons": "^5.2.0",
"react-intersection-observer": "^9.10.2",
"react-use": "^17.5.0",
"sonner": "^1.4.41",
"stripe": "^15.5.0",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/node": "20.12.8",
"@types/react": "18.3.1",
"@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.8.2",
"typescript": "^5"
}
}