-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 3.05 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
74
75
{
"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 && node scripts/strip-build-secrets.mjs && wrangler deploy",
"deploy:codebam": "env -u CLOUDFLARE_API_TOKEN -u CLOUDFLARE_ACCOUNT_ID -u CF_API_TOKEN npm run build:codebam && node scripts/strip-build-secrets.mjs && wrangler deploy --env codebam",
"check": "astro check",
"test": "vitest",
"test:scripts": "node --test scripts/*.test.mjs",
"test:run": "vitest run && npm run test:scripts",
"smoke": "node scripts/smoke.mjs",
"mockups": "node tools/mockups/build.mjs",
"ads": "node tools/ads/build-ads.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 && npx wrangler r2 object put private/resume.txt --file resume/out/resume.txt --content-type \"text/plain; charset=utf-8\" --local && npx wrangler r2 object put private/resume.md --file resume/resume.md --content-type \"text/markdown; charset=utf-8\" --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.3.2",
"@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.6",
"@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.37.0",
"fuse.js": "^7.5.0",
"react": "19.3.0",
"react-dom": "19.3.0",
"shiki": "^4.4.3",
"stripe": "^22.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.7",
"@cloudflare/workers-types": "^5.20260904.1",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^1.0.0",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "^6.0.3",
"vitest": "^5.0.0",
"wrangler": "^4.131.0"
},
"allowScripts": {
"esbuild@0.28.2": true,
"esbuild@0.28.1": true,
"workerd@1.20260910.1": true,
"better-sqlite3@12.11.1": true
}
}