-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
66 lines (66 loc) · 2.22 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
{
"name": "sphil",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "npx prettier --check .",
"postbuild": "pagefind --site .next/standalone/.next/server/app/articles --output-path public/_pagefind",
"stripe:listen": "stripe listen --forward-to 127.0.0.1:3000/api/stripe-webhook",
"db:regen": "npx prisma generate",
"db:push": "npx prisma db push"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@google-cloud/storage": "^7.13.0",
"@mdxeditor/editor": "3.11.5",
"@mui/icons-material": "^5.16.4",
"@mui/material": "^5.16.4",
"@prisma/client": "^5.21.1",
"@react-email/components": "^0.0.28",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "20.6.0",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.15",
"classnames": "^2.3.2",
"clsx": "^2.1.1",
"eslint": "8.49.0",
"eslint-config-next": "13.4.19",
"framer-motion": "^10.18.0",
"next": "^15.0.3",
"next-auth": "^5.0.0-beta.25",
"nextra": "4.0.0-app-router.28",
"nextra-theme-docs": "4.0.0-app-router.28",
"postcss": "8.4.47",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"react": "18.3.1",
"react-cookie-consent": "^9.0.0",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"react-textarea-autosize": "^8.5.4",
"remark-directive": "^3.0.0",
"remark-gfm": "^4.0.0",
"resend": "^4.0.1-alpha.0",
"stripe": "^17.2.1",
"tailwind-merge": "^2.4.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"optionalDependencies": {
"@napi-rs/simple-git-linux-x64-gnu": "^0.1.9",
"@napi-rs/simple-git-linux-x64-musl": "^0.1.16"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"daisyui": "^4.12.13",
"pagefind": "^1.1.1"
}
}