-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "dark-saas-blockchain-site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev ",
"start": "astro dev",
"build": "astro build",
"check": "astro check",
"preview": "bun run build && wrangler dev",
"astro": "astro",
"optimize:images": "node scripts/optimize-images.js",
"prebuild": "npm run optimize:images",
"generate-types": "wrangler types",
"deploy": "bun run build && wrangler deploy"
},
"dependencies": {
"@astrojs/check": "0.9.9",
"@astrojs/cloudflare": "^14.0.0",
"@astrojs/react": "6.0.0",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"astro": "7.0.2",
"astro-compress": "^2.4.1",
"framer-motion": "^11.18.2",
"install": "^0.13.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sharp": "^0.34.5",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^4.3.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"wrangler": "^4.104.0"
}
}