-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.65 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
{
"name": "emdashcms-org",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "wrangler types && astro dev",
"dev:worker": "node scripts/build-skill-digests.mjs && astro build && wrangler dev",
"build": "wrangler types && node scripts/build-skill-digests.mjs && astro check && astro build",
"preview": "astro preview",
"deploy": "astro build && wrangler deploy",
"audit:local": "tsx scripts/audit-local.ts",
"bench": "tsx scripts/audit-benchmark.ts",
"test": "vitest run",
"test:watch": "vitest",
"db:create-migration": "wrangler d1 migrations create emdashcms-org",
"db:migrate:local": "wrangler d1 migrations apply emdashcms-org --local",
"db:migrate:remote": "wrangler d1 migrations apply emdashcms-org --remote",
"db:status": "wrangler d1 migrations list emdashcms-org --remote",
"db:status:local": "wrangler d1 migrations list emdashcms-org --local",
"db:seed": "wrangler d1 execute emdashcms-org --local --file=./seeds/dev.sql",
"types": "wrangler types",
"astro": "astro"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.10",
"astro": "^6.4.2",
"jose": "^6.2.2",
"markdown-it": "14.1.1",
"modern-tar": "^0.7.6",
"workers-og": "^0.0.27",
"wrangler": "^4.95.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@cloudflare/vitest-pool-workers": "^0.16.10",
"@tailwindcss/postcss": "^4.2.2",
"@types/markdown-it": "14.1.2",
"postcss": "^8.5.12",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"overrides": {
"yaml": "^2.8.3"
}
}