-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 991 Bytes
/
package.json
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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build-local": "rm -rf dist/ .wrangler/ functions/\\[\\[path\\]\\].js & astro build",
"preview": "astro preview",
"preview-cf": "astro build & wrangler pages dev ./dist",
"deploy": "wrangler pages deploy dist --commit-dirty=true",
"astro": "astro"
},
"dependencies": {
"@astrojs/cloudflare": "^8.0.1",
"@astrojs/node": "^7.0.4",
"@astrojs/preact": "3.0.1",
"@astrojs/sitemap": "^3.0.5",
"@nanostores/preact": "^0.5.0",
"astro": "^4.0.9",
"axios": "^1.6.2",
"marked": "^12.0.2",
"nanostores": "^0.9.5",
"preact": "10.18.1"
},
"devDependencies": {
"@types/he": "^1.2.3",
"wrangler": "^3.22.2"
},
"pnpm": {
"overrides": {
"react": "npm:@preact/compat@latest",
"react-dom": "npm:@preact/compat@latest"
}
}
}