-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 953 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 953 Bytes
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
{
"name": "astro-status-page",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"pages:dev": "wrangler pages dev --compatibility-date=2023-12-06 -- astro dev",
"pages:deploy": "astro build && wrangler pages deploy ./dist"
},
"dependencies": {
"@astrojs/check": "0.7.0",
"@astrojs/cloudflare": "10.4.1",
"@astrojs/node": "8.3.1",
"@astrojs/react": "3.6.0",
"@astrojs/tailwind": "5.1.0",
"@radix-ui/react-hover-card": "1.0.7",
"astro": "5.15.9",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"zod": "3.23.8"
},
"devDependencies": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"prettier": "3.3.2",
"prettier-plugin-astro": "0.14.0",
"wrangler": "3.61.0"
}
}