-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.99 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.99 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "sphil",
"version": "0.1.0",
"private": true,
"scripts": {
"h": "jq '.scripts' package.json",
"dev": "next dev",
"email:dev": "email dev --dir lib/email/templates",
"build": "pnpm run lint && pnpm run ct && next build",
"start": "next start",
"lint": "biome lint",
"ct": "tsc --pretty --noEmit",
"cd:dev": "gh workflow run cd_dev.yaml --ref $(git rev-parse --abbrev-ref HEAD)",
"prettier:check": "npx prettier --check .",
"postbuild": "pagefind --site .next/standalone/.next/server/app --output-path public/_pagefind",
"stripe:listen": "stripe listen --forward-to 127.0.0.1:3000/api/stripe-webhook",
"db:studio": "dotenv -e .env -- npx prisma studio",
"db:studio:prod": "dotenv -e .env.production -- npx prisma studio",
"db:regen": "npx prisma generate",
"db:push": "npx prisma db push",
"db:push:prod": "dotenv -e .env.production -- npx prisma db push",
"email:send-news": "dotenv -e .env -- bun run scripts/email/send-newsletter.tsx",
"email:send-news:prod": "dotenv -e .env.production -- bun run scripts/email/send-newsletter.tsx",
"email:send-seminars": "bun run scripts/email/send-seminar-email.tsx",
"email:send-reminders": "bun run scripts/email/send-seminar-reminder.tsx"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@google-cloud/storage": "^7.19.0",
"@mdx-js/mdx": "^3.1.1",
"@mdxeditor/editor": "3.14.0",
"@mui/icons-material": "^7.3.10",
"@mui/material": "^7.3.10",
"@mui/material-nextjs": "^7.3.10",
"@mui/x-date-pickers": "^8.28.3",
"@prisma/client": "^6.19.3",
"@react-email/components": "^1.0.12",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "1.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"assemblyai": "^4.30.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"framer-motion": "^12.38.0",
"minimatch": "^10.2.5",
"next": "^16.2.4",
"next-auth": "5.0.0-beta.30",
"nextra": "4.6.1",
"nextra-theme-docs": "4.6.1",
"posthog-js": "^1.369.2",
"prettier": "3.6.2",
"prisma": "^6.19.3",
"react": "^19.2.5",
"react-cookie-consent": "^9.0.0",
"react-dom": "^19.2.5",
"react-email": "^5.2.10",
"react-hook-form": "7.62.0",
"react-hot-toast": "^2.6.0",
"react-textarea-autosize": "^8.5.9",
"rehype-external-links": "^3.0.0",
"remark-directive": "^3.0.1",
"remark-gfm": "^4.0.1",
"resend": "^6.12.0",
"sharp": "^0.34.5",
"stripe": "^18.5.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"typescript": "5.9.3",
"unist-util-visit": "^5.1.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@napi-rs/simple-git-linux-x64-gnu": "^0.1.22",
"@napi-rs/simple-git-linux-x64-musl": "^0.1.22"
},
"devDependencies": {
"@auth/core": "^0.34.3",
"@biomejs/biome": "2.3.8",
"@react-email/preview-server": "^5.2.10",
"@svgr/webpack": "^8.1.0",
"baseline-browser-mapping": "^2.10.19",
"dotenv-cli": "^10.0.0",
"pagefind": "1.4.0"
},
"overrides": {
"glob": "^11.1.0",
"next": "16.0.10",
"mdast-util-to-hast": "13.2.1",
"jws": "4.0.1",
"js-yaml": "4.1.1"
},
"trustedDependencies": [
"@prisma/client",
"prisma",
"bun",
"@prisma/engines",
"esbuild",
"sharp",
"core-js"
]
}