-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.29 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.29 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
{
"name": "app-router",
"version": "0.1.4",
"private": true,
"scripts": {
"openbuild": "node ../../packages/open-next/dist/index.js build --streaming --build-command \"npx turbo build\"",
"dev": "next dev --turbopack --port 3001",
"build": "next build --webpack",
"start": "next start --port 3001",
"lint": "next lint",
"clean": "rm -rf .turbo node_modules .next .open-next",
"build:worker": "pnpm opennextjs-cloudflare build",
"preview:worker": "pnpm opennextjs-cloudflare preview",
"preview": "pnpm build:worker && pnpm preview:worker",
"e2e": "playwright test -c e2e/playwright.config.ts",
"build:worker-turbopack": "pnpm build:worker --openNextConfigPath open-next.turbopack.config.ts",
"e2e-turbopack": "playwright test -c e2e/playwright.turbopack.config.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "workspace:*",
"@example/shared": "workspace:*",
"next": "catalog:e2e",
"react": "catalog:e2e",
"react-dom": "catalog:e2e",
"shiki": "^3.22.0"
},
"devDependencies": {
"@playwright/test": "catalog:",
"@types/node": "catalog:e2e",
"@types/react": "catalog:e2e",
"@types/react-dom": "catalog:e2e",
"autoprefixer": "catalog:e2e",
"postcss": "catalog:e2e",
"tailwindcss": "catalog:e2e",
"typescript": "catalog:default",
"wrangler": "catalog:"
}
}