-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
117 lines (117 loc) · 3.61 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "on-the-hill-theatre-club-website",
"private": true,
"scripts": {
"build": "next build",
"build:keystone": "keystone build",
"db:migrate": "keystone prisma migrate deploy",
"db:seed": "tsx seed-data.ts",
"dev": "turbo dev:watch dev:keystone dev:next",
"dev:keystone": "next dev .keystone/admin --port 4000",
"dev:next": "next dev --port 3000 --turbopack",
"dev:next-ssl": "node server.js",
"dev:watch": "keystone dev --no-server",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "keystone build --no-ui --frozen",
"lint": "next lint && eslint . && cspell '**' && tsc --noEmit",
"prep:keystone": "keystone build --no-ui"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.0",
"@aws-sdk/client-s3": "^3.734.0",
"@aws-sdk/signature-v4-crt": "^3.734.0",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.10.0",
"@keystone-6/core": "^6.3.1",
"@marsidev/react-turnstile": "^1.1.0",
"@neondatabase/serverless": "^0.10.4",
"@prisma/adapter-neon": "^6.2.1",
"@prisma/client": "6.2.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-hover-card": "^1.1.4",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@sendgrid/mail": "^8.1.4",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/dotenv-flow": "^3.3.3",
"@vercel/analytics": "^1.4.1",
"@vercel/blob": "^0.27.0",
"@vercel/speed-insights": "^1.1.0",
"@whatwg-node/fetch": "^0.10.1",
"ai": "^4.1.0",
"autoprefixer": "^10.4.20",
"aws-crt": "^1.25.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csrf": "^3.1.0",
"cuid": "^3.0.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.7",
"file-type": "^20.0.0",
"focus-visible": "^5.2.1",
"gql.tada": "^1.8.10",
"graphql": "^16.10.0",
"graphql-yoga": "^5.10.8",
"image-size": "^1.2.0",
"inngest": "^3.30.0",
"lucide-react": "^0.473.0",
"next": "^15.1.3",
"next-auth": "5.0.0-beta.25",
"postcss-focus-visible": "^10.0.1",
"react": "19.0.0",
"react-day-picker": "^9.5.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@next/eslint-plugin-next": "^15.1.3",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"cspell": "^8.17.1",
"eslint": "9.18.0",
"eslint-config-next": "15.1.3",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "6.2.1",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.21.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"prisma": "6.2.1",
"@prisma/client": "6.2.1",
"@prisma/internals": "6.2.1",
"@prisma/migrate": "6.2.1",
"next": "^15.1.3",
"react": "19.0.0",
"react-dom": "19.0.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@apollo/client": "^3.12.4",
"react-day-picker": "^9.5.0",
"@0no-co/graphql.web": "1.0.9"
}
}
}