-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.65 KB
/
package.json
File metadata and controls
91 lines (91 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
{
"name": "dev_stats",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "ts-node prisma/seed.ts",
"format": "prettier --write .",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@auth/core": "^0.37.4",
"@auth/prisma-adapter": "^2.7.4",
"@google/generative-ai": "^0.21.0",
"@hookform/resolvers": "^3.10.0",
"@mdx-js/loader": "^3.1.0",
"@next/mdx": "^15.3.3",
"@octokit/rest": "^21.1.0",
"@prisma/client": "^6.3.1",
"@prisma/extension-accelerate": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.4",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.2.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-pdf/renderer": "^4.2.1",
"@stripe/stripe-js": "^5.6.0",
"@tabler/icons-react": "^3.34.0",
"@tanstack/react-query": "^5.83.0",
"@types/bcryptjs": "^2.4.6",
"@types/nodemailer": "^6.4.17",
"@vercel/analytics": "^1.5.0",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"html2canvas": "^1.4.1",
"jose": "^5.9.6",
"lucide-react": "^0.516.0",
"micro": "^10.0.1",
"motion": "^12.18.1",
"next": "15.1.6",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.4",
"next-view-transitions": "^0.3.4",
"nodemailer": "^7.0.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.5",
"react-hook-form": "^7.54.2",
"react-hotkeys-hook": "^5.1.0",
"react-markdown": "^9.1.0",
"recharts": "^2.15.1",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.1",
"stripe": "^17.6.0",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"use-react-screenshot": "^4.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/micro": "^7.3.7",
"@types/node": "^20.17.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/recharts": "^1.8.29",
"eslint": "9.21.0",
"eslint-config-next": "15.1.7",
"ignore-loader": "^0.1.2",
"postcss": "^8",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"prisma": "^6.3.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}