-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "emgineer",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm media && next build",
"db:push": "drizzle-kit push:sqlite ",
"db:migrate": "drizzle-kit generate:sqlite ",
"db": "drizzle-kit generate:sqlite && drizzle-kit push:sqlite",
"studio": "drizzle-kit studio",
"start": "next start",
"lint": "next lint",
"media": "non media",
"stripe": "stripe listen --forward-to localhost:3000/api/webhooks"
},
"dependencies": {
"@auth/core": "^0.12.0",
"@auth/drizzle-adapter": "^0.3.1",
"@hookform/resolvers": "^3.1.1",
"@libsql/client": "^0.3.1",
"@notionhq/client": "^2.2.2",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@stripe/stripe-js": "^2.1.0",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-table": "^8.9.3",
"@trpc/client": "^10.27.1",
"@trpc/next": "^10.27.1",
"@trpc/react-query": "^10.27.1",
"@trpc/server": "^10.27.1",
"@vercel/analytics": "^1.0.1",
"add-to-calendar-button-react": "^2.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"drizzle-orm": "^0.28.6",
"eslint": "8.28.0",
"eslint-config-next": "13.0.5",
"lucide-react": "^0.263.1",
"next": "13.5.2",
"next-auth": "0.0.0-manual.024ba3e6",
"next-themes": "^0.2.1",
"notion-on-next": "^1.0.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"react-syntax-highlighter": "^15.5.0",
"react-wrap-balancer": "^1.0.0",
"stripe": "^12.18.0",
"superjson": "1.12.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.5.0",
"@types/node": "18.11.9",
"@types/react": "18.2.18",
"@types/react-dom": "18.0.9",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/request": "^2.48.8",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"drizzle-kit": "^0.19.12",
"encoding": "^0.1.13",
"postcss": "^8.4.21",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.2.4",
"tailwindcss-animate": "^1.0.6",
"tsc": "^2.0.4",
"typescript": "^5.1.6"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}