-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 735 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 735 Bytes
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
{
"name": "astro-5-cf-workers",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "wrangler dev --port 3030",
"test:build": "pnpm install && pnpm build",
"test:assert": "TEST_ENV=production playwright test"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@playwright/test": "~1.56.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/astro": "latest || *",
"@sentry/cloudflare": "latest || *",
"astro": "^5.17.1"
},
"devDependencies": {
"wrangler": "^4.63.0"
},
"pnpm": {
"overrides": {
"esbuild": "0.24.0"
}
},
"volta": {
"extends": "../../package.json"
}
}