-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"name": "bmbsqd-site",
"version": "1.0.0",
"type": "module",
"description": "Modern Astro site",
"scripts": {
"dev": "NODE_ENV=development astro dev --host",
"start": "NODE_ENV=development astro dev --host",
"build": "NODE_ENV=production astro build",
"build:dev": "NODE_ENV=development astro build",
"preview": "astro preview",
"preview:wrangler": "astro build && wrangler dev",
"deploy": "astro build && wrangler deploy",
"astro": "astro",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format --write .",
"check": "biome check --fix ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.0",
"@fontsource-variable/hubot-sans": "^5.2.8",
"@fontsource-variable/mona-sans": "^5.2.8",
"@fontsource/stack-sans-notch": "^5.2.1",
"@fontsource/stack-sans-text": "^5.2.1",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^5.17.3",
"astro-compress": "^2.3.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"framer-motion": "^12.34.3",
"lucide-react": "^0.575.0",
"ogl": "^1.0.11",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@tailwindcss/vite": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"wrangler": "^4.67.0"
}
}