-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "winrate-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "next typegen && tsc --noEmit",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.994.0",
"@base-ui/react": "^1.2.0",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"@react-email/components": "^1.0.8",
"@react-email/render": "^2.0.4",
"@react-email/tailwind": "^2.0.5",
"@react-three/fiber": "^9.5.0",
"@vercel/analytics": "^1.6.1",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"embla-carousel-react": "^8.6.0",
"fuse.js": "^7.1.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.574.0",
"motion": "^12.34.1",
"next": "16.1.6",
"next-themes": "^0.4.6",
"pg": "^8.18.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-day-picker": "^9.13.2",
"react-dom": "19.2.3",
"react-resizable-panels": "^4.6.4",
"recharts": "2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.1",
"three": "^0.182.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^2.13.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.33",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.182.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"prisma": "^7.4.0",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.56.0"
}
}