-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "nextjs-16-cf-workers",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"cf:build": "opennextjs-cloudflare build",
"cf:preview": "opennextjs-cloudflare preview",
"build": "next build",
"clean": "npx rimraf node_modules pnpm-lock.yaml .tmp_dev_server_logs",
"start": "pnpm cf:preview",
"lint": "eslint",
"test:prod": "TEST_ENV=production playwright test",
"test:build": "pnpm install && pnpm cf:build",
"test:build-canary": "pnpm install && pnpm add next@canary && pnpm cf:build",
"test:build-latest": "pnpm install && pnpm add next@latest && pnpm cf:build",
"test:assert": "pnpm test:prod"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.14.9",
"@sentry/nextjs": "latest || *",
"@sentry/core": "latest || *",
"next": "16.2.3",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@playwright/test": "~1.56.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "canary",
"typescript": "^5",
"wrangler": "^4.61.0"
},
"volta": {
"extends": "../../package.json"
},
"sentryTest": {
"variants": [
{
"build-command": "pnpm test:build-latest",
"label": "nextjs-16-cf-workers (latest)"
},
{
"build-command": "pnpm test:build-canary",
"label": "nextjs-16-cf-workers (canary)"
}
]
}
}