-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.61 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
70
71
72
73
{
"name": "seanbehan-ca-emdash",
"version": "0.0.3",
"private": true,
"type": "module",
"emdash": {
"label": "Blog",
"seed": "seed/seed.json"
},
"scripts": {
"dev": "npm run migrate:local && emdash dev",
"dev:codebam": "CLOUDFLARE_ENV=codebam PUBLIC_SITE=codebam npm run dev",
"build": "astro build",
"build:codebam": "CLOUDFLARE_ENV=codebam PUBLIC_SITE=codebam astro build",
"preview": "astro build && wrangler dev",
"deploy": "env -u CLOUDFLARE_API_TOKEN -u CLOUDFLARE_ACCOUNT_ID -u CF_API_TOKEN astro build && wrangler deploy",
"deploy:codebam": "env -u CLOUDFLARE_API_TOKEN -u CLOUDFLARE_ACCOUNT_ID -u CF_API_TOKEN npm run build:codebam && wrangler deploy --env codebam",
"check": "astro check",
"test": "vitest",
"test:run": "vitest run",
"smoke": "node scripts/smoke.mjs",
"mockups": "node tools/mockups/build.mjs",
"types": "emdash types",
"resume": "nix run .#resume -- --outdir resume/out",
"resume:seed": "npm run resume && npx wrangler r2 object put private/resume.html --file resume/out/resume.html --content-type \"text/html; charset=utf-8\" --local && npx wrangler r2 object put private/resume.pdf --file resume/out/resume.pdf --content-type application/pdf --local",
"import:markdown": "node scripts/import-markdown.mjs",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "git config core.hooksPath .githooks || true",
"backup": "node scripts/backup-d1.mjs",
"migrate:local": "wrangler d1 migrations apply DB --local",
"migrate:prod": "wrangler d1 migrations apply DB --remote"
},
"dependencies": {
"@astrojs/cloudflare": "^14.0.0",
"@astrojs/react": "^6.0.0",
"@cf-wasm/og": "^0.5.0",
"@cloudflare/kumo": "2.6.0",
"@emdash-cms/cloudflare": "^0.36.0",
"@emdash-cms/plugin-forms": "^0.2.4",
"@emdash-cms/plugin-webhook-notifier": "^0.2.0",
"@phosphor-icons/react": "^2.1.10",
"@portabletext/to-html": "^6.0.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.9",
"emdash": "^0.36.0",
"fuse.js": "^7.5.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"shiki": "^4.4.3",
"stripe": "^22.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.7",
"@cloudflare/workers-types": "^5.20260820.1",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.11",
"wrangler": "^4.99.0"
},
"allowScripts": {
"esbuild@0.28.2": true,
"esbuild@0.28.1": true,
"workerd@1.20260820.1": true,
"better-sqlite3@12.11.1": true
}
}