-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
{
"name": "next-starter-template",
"description": "Build a full-stack web application with Next.js.",
"private": true,
"cloudflare": {
"label": "Next.js Framework Starter",
"products": [
"Workers"
],
"categories": [],
"preview_icon_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/05eee9e0-2c04-48fd-11bf-84e65f839000/public",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/4e913a56-fd99-4372-0586-9f1364173100/preview",
"publish": true
},
"dependencies": {
"@opennextjs/cloudflare": "1.3.0",
"next": "15.3.3",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "3",
"@tailwindcss/postcss": "4.1.4",
"@types/node": "24.0.4",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"eslint": "9.27.0",
"eslint-config-next": "15.3.3",
"tailwindcss": "4.1.1",
"typescript": "5.8.3",
"wrangler": "4.21.x"
},
"scripts": {
"build": "next build",
"cf-typegen": "wrangler types --env-interface CloudflareEnv env.d.ts",
"check": "npm run build && tsc",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"dev": "next dev",
"lint": "next lint",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"start": "next start"
}
}