-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.87 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
{
"name": "agent-postmortem",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy --config wrangler.production.jsonc",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload --config wrangler.production.jsonc",
"cf-typegen": "wrangler types --config wrangler.production.jsonc --env-interface CloudflareEnv --strict-vars false cloudflare-env.d.ts",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "vitest",
"test:e2e": "playwright test",
"db": "npx supabase db query --db-url \"$DATABASE_URL_ENCODED\""
},
"dependencies": {
"@aws-sdk/client-s3": "^3.590.0",
"@aws-sdk/s3-request-presigner": "^3.590.0",
"@opennextjs/cloudflare": "^1.15.1",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.5",
"@tailwindcss/typography": "^0.5.13",
"@vercel/og": "^0.6.2",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"next": "^14.2.35",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resend": "^3.3.0",
"sharp": "^0.33.4",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"dotenv": "^17.4.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"playwright": "^1.45.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"typescript": "^5.5.3",
"vitest": "^1.6.0",
"wrangler": "^4.98.0"
},
"browserslist": [
"chrome >= 91",
"firefox >= 90",
"safari >= 15",
"edge >= 91"
]
}