-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "nextflare",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"build:pages": "npx @cloudflare/next-on-pages",
"dev": "next dev",
"db:generate": "drizzle-kit generate:sqlite",
"db:migrate:local": "wrangler d1 migrations apply --local nextflare",
"db:migrate:preview": "wrangler d1 migrations apply --remote --env preview nextflare-preview",
"db:migrate:prod": "wrangler d1 migrations apply --remote nextflare",
"db:studio": "drizzle-kit studio",
"lint": "next lint",
"lint:fix": "next lint --fix",
"start": "next start",
"update": "taze -I"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.8.0",
"@cloudflare/next-on-pages": "^1.11.3",
"@cloudflare/workers-types": "^4.20240620.0",
"@lemonsqueezy/lemonsqueezy.js": "^2.2.0",
"@lemonsqueezy/wedges": "^1.2.2",
"@sentry/nextjs": "^8",
"clsx": "^2.1.0",
"drizzle-orm": "^0.31.2",
"geist": "^1.2.2",
"lucide-react": "^0.358.0",
"next": "14.1.3",
"next-auth": "5.0.0-beta.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sonner": "^1.4.3",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.2.2",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"autoprefixer": "^10.4.18",
"drizzle-kit": "^0.22.7",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-next-on-pages": "^1.11.3",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"taze": "^0.13.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"wrangler": "^3.61.0"
},
"packageManager": "[email protected]"
}