-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@emdash-cms/template-blog-cloudflare",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "node scripts/dev.mjs",
"seed": "node scripts/seed.mjs",
"seed:demo": "node scripts/seed.mjs full",
"seed:minimal": "node scripts/seed.mjs minimal",
"seed:pre-launch": "node scripts/seed.mjs pre-launch",
"reset": "node scripts/reset.mjs",
"export:d1-sql": "node scripts/export-sqlite-for-d1.mjs",
"sync:prod-db": "node scripts/push-local-db-to-d1.mjs",
"reset:admin-access": "node scripts/reset-admin-access.mjs --site-url https://emdash-property-web-builder.etewiah.workers.dev",
"build": "astro build",
"preview": "astro preview",
"deploy": "wrangler deploy",
"deploy:prod": "astro build && wrangler deploy --config wrangler.prod.jsonc",
"typecheck": "astro check",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"check": "astro check && vitest run"
},
"dependencies": {
"@astrojs/cloudflare": "^13.5.0",
"@astrojs/react": "^5.0.4",
"@emdash-cms/cloudflare": "^0.10.0",
"@emdash-cms/plugin-forms": "^0.2.1",
"@emdash-cms/plugin-webhook-notifier": "0.1.3",
"astro": "^6.3.1",
"better-sqlite3": "^12.9.0",
"emdash": "^0.10.0",
"leaflet": "^1.9.4",
"pwb-page-parts": "workspace:*",
"pwb-properties": "workspace:*",
"pwb-property-embeds": "workspace:*",
"pwb-valuation": "workspace:*",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@cloudflare/workers-types": "^4.20260510.1",
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.13",
"@vitest/coverage-v8": "^4.1.5",
"happy-dom": "^20.9.0",
"msw": "^2.14.5",
"vitest": "^4.1.5",
"wrangler": "^4.90.0"
},
"pnpm": {
"overrides": {
"kysely": "0.28.17",
"yaml": "2.8.4"
},
"onlyBuiltDependencies": [
"msw",
"better-sqlite3"
],
"patchedDependencies": {
"emdash@0.10.0": "patches/emdash@0.10.0.patch"
}
}
}