-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 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
{
"name": "emdashcms-org",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "wrangler types && astro dev",
"dev:worker": "astro build && wrangler dev",
"build": "wrangler types && astro check && astro build",
"preview": "astro preview",
"deploy": "astro build && wrangler deploy",
"audit:local": "tsx scripts/audit-local.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.6",
"astro": "^6.1.2",
"jose": "^6.2.2",
"modern-tar": "^0.7.6",
"wrangler": "^4.80.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@cloudflare/vitest-pool-workers": "^0.14.1",
"@tailwindcss/postcss": "^4.2.2",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"overrides": {
"yaml": "^2.8.3"
}
}