-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
{
"name": "webapp",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"workspaces": {
"packages": [
"infra"
]
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"w": "wrangler",
"w:build": "bun run build && wrangler build",
"astro": "astro",
"astro:a": "astro add",
"update": "bun update --all",
"lint": "biome check",
"lint:fix": "biome check --write && astro check --fix",
"format": "biome format --write && astro check --fix",
"format:check": "biome format",
"typecheck": "astro sync",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"lefthook": "lefthook",
"generate-types": "wrangler types",
"postinstall": "lefthook install && bun run generate-types"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/cloudflare": "^13.1.10",
"@astrojs/mdx": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@iconify-json/lucide": "^1.2.102",
"@iconify-json/simple-icons": "^1.2.79",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.8",
"astro-icon": "^1.1.5",
"daisyui": "^5.5.19",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"wrangler": "^4.83.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@playwright/test": "^1.59.1",
"lefthook": "^2.1.6",
"vite-tsconfig-paths": "^6.1.1",
"playwright": "^1.59.1",
"vitest": "^4.1.4"
},
"overrides": {
"vite": "^7"
}
}