-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.95 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
92
93
94
95
96
97
98
99
100
{
"name": "fundrush",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"prebuild": "pnpm run codegen",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"codegen": "tsx scripts/export-graphql-schema.ts && graphql-codegen",
"codegen:watch": "tsx scripts/export-graphql-schema.ts && graphql-codegen --watch",
"db:migrate": "drizzle-kit push && pnpm run codegen"
},
"overrides": {
"react-is": "^19.0.0-rc-69d4b800-20241021"
},
"dependencies": {
"@apollo/server": "^5.2.0",
"@as-integrations/next": "^4.1.0",
"@escape.tech/graphql-armor": "^3.1.6",
"@hookform/resolvers": "^5.1.1",
"@neondatabase/serverless": "^1.0.1",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-query": "^5.80.6",
"@vercel/blob": "^2.0.0",
"better-auth": "^1.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-graphql": "^0.8.5",
"drizzle-orm": "^0.45.1",
"embla-carousel-react": "^8.6.0",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"graphql-tag": "^2.12.6",
"is-hotkey": "^0.2.0",
"lucide-react": "^0.562.0",
"motion": "^12.16.0",
"next": "16.1.1",
"next-themes": "^0.4.6",
"plaiceholder": "^3.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.60.0",
"recharts": "3.6.0",
"sharp": "^0.34.3",
"slate": "^0.120.0",
"slate-history": "^0.113.1",
"slate-react": "^0.120.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.0",
"vaul": "^1.1.2",
"yet-another-react-lightbox": "^3.23.2",
"zod": "^4.0.5"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@faker-js/faker": "^10.0.0",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.5.1",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/eslint-plugin-query": "^5.78.0",
"@types/node": "^25",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"drizzle-kit": "^0.31.1",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}