-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.1 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
{
"name": "amanssur-com",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.25.0",
"scripts": {
"disable:toolbar": "astro preferences disable devToolbar",
"dev": "astro dev",
"build": "astro build",
"preview": "ASTRO_ADAPTER=node astro build && ASTRO_ADAPTER=node astro preview",
"astro": "astro",
"deploy": "astro build && wrangler pages deploy",
"cf-typegen": "wrangler types",
"dev:worker": "wrangler dev workers/mail-queue/src/index.ts",
"deploy:worker": "wrangler deploy workers/mail-queue/src/index.ts",
"retry-pending": "tsx workers/retry-pending.ts",
"digest:slack": "tsx workers/digest-slack.ts",
"push:notion": "tsx workers/push-notion.ts",
"contents": "scripts/project_contents.sh",
"lint": "eslint . --max-warnings=0",
"tsc": "tsc --noEmit",
"prettier": "prettier . --write",
"check": "pnpm run tsc && pnpm run lint"
},
"dependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/cloudflare": "^12.6.9",
"@astrojs/mdx": "^4.3.6",
"@astrojs/svelte": "^7.2.0",
"@notionhq/client": "^5.1.0",
"@tailwindcss/postcss": "^4.1.14",
"@tailwindcss/vite": "^4.1.14",
"astro": "^5.14.1",
"axios": "^1.12.2",
"eslint-plugin-unused-imports": "^4.3.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"prettier": "^3.7.4",
"svelte": "^5.39.9",
"svelte-eslint-parser": "^1.4.1",
"svelte-preprocess": "^6.0.3",
"svelte2tsx": "^0.7.44",
"zod": "3.25.76"
},
"devDependencies": {
"@astrojs/node": "^9.5.0",
"@cloudflare/workers-types": "^4.20251004.0",
"@eslint/js": "^9.39.1",
"@tsconfig/svelte": "^5.0.5",
"@types/node": "^24.7.0",
"astro-eslint-parser": "^1.2.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-svelte": "^3.13.0",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
},
"overrides": {
"zod": "3.25.76",
"miniflare": "4.20251001.0",
"wrangler": "4.42.0"
}
}