-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.71 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
{
"name": "climb-log",
"author": "Kylie Czajkowski <hello@kylieis.online>",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"deploy": "npm run build && wrangler deploy",
"deploy:preview": "npm run build && wrangler deploy --env preview",
"seed": "tsx db/seed.ts",
"seed:remote": "tsx db/seed.ts --remote",
"export": "node scripts/export-data.mjs",
"migrate:schema": "node scripts/migrate/merge-photos-schema.mjs",
"migrate:schema:remote": "node scripts/migrate/merge-photos-schema.mjs --remote",
"migrate:r2": "node scripts/migrate/r2-sync.mjs",
"format": "prettier --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "astro check && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/cloudflare": "^13.2.0",
"@astrojs/react": "^4.3.0",
"@hono/zod-validator": "^0.8.0",
"@notionhq/client": "^2.3.0",
"astro": "^6.3.7",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"gray-matter": "^4.0.3",
"hono": "^4.12.22",
"marked": "^15.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.3",
"workers-og": "^0.0.27",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@cloudflare/workers-types": "^4.20250515.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"prettier": "^3.5.3",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"vitest": "^3.2.6",
"wrangler": "^4.94.0"
}
}