-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "tristanmarsh.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "pnpm run build && wrangler dev",
"astro": "astro",
"deploy": "pnpm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"test:e2e": "npx playwright test --ignore-snapshots",
"test:e2e:ui": "npx playwright test --ignore-snapshots --ui",
"test:e2e:preview": "PW_MODE=preview npx playwright test --ignore-snapshots",
"test:e2e:screenshots": "PW_SCREENSHOTS=1 npx playwright test e2e/screenshots.spec.ts",
"test:e2e:a11y": "PW_A11Y=1 npx playwright test --ignore-snapshots"
},
"dependencies": {
"@astrojs/cloudflare": "12",
"@astrojs/react": "^4.3.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"astro": "^5.7.11",
"cmdk": "^1.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.59.1",
"wrangler": "^4.81.0"
}
}