summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/blog-multiple-authors/package.json4
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/docs/package.json4
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json12
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json8
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/integrations-playground/package.json12
-rw-r--r--examples/portfolio/package.json4
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/subpath/package.json6
-rw-r--r--examples/with-markdown/package.json8
-rw-r--r--examples/with-nanostores/package.json6
-rw-r--r--examples/with-tailwindcss/package.json4
16 files changed, 40 insertions, 40 deletions
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index a2892738b..e27e15f63 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -11,9 +11,9 @@
"devDependencies": {
"@astrojs/preact": "^0.1.2",
"astro": "^1.0.0-beta.27",
- "sass": "^1.50.1"
+ "sass": "^1.51.0"
},
"dependencies": {
- "preact": "^10.7.1"
+ "preact": "^10.7.2"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index f87b81387..df3070d0e 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -13,6 +13,6 @@
"astro": "^1.0.0-beta.27"
},
"dependencies": {
- "preact": "^10.7.1"
+ "preact": "^10.7.2"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 31f0c0fc6..02256f34e 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,8 +12,8 @@
"@algolia/client-search": "^4.13.0",
"@docsearch/css": "^3.0.0",
"@docsearch/react": "^3.0.0",
- "@types/react": "^17.0.44",
- "preact": "^10.7.1",
+ "@types/react": "^17.0.45",
+ "preact": "^10.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index f8803dce1..1cf4d7d4c 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -14,6 +14,6 @@
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.2"
+ "lit": "^2.2.3"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 9eca5c416..e19e359e5 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -19,12 +19,12 @@
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.2",
- "preact": "^10.7.1",
- "react": "^18.0.0",
- "react-dom": "^18.0.0",
- "solid-js": "^1.3.16",
- "svelte": "^3.47.0",
+ "lit": "^2.2.3",
+ "preact": "^10.7.2",
+ "react": "^18.1.0",
+ "react-dom": "^18.1.0",
+ "solid-js": "^1.3.17",
+ "svelte": "^3.48.0",
"vue": "^3.2.33"
}
}
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 643072149..e5cdb2856 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -13,6 +13,6 @@
"astro": "^1.0.0-beta.27"
},
"dependencies": {
- "preact": "^10.7.1"
+ "preact": "^10.7.2"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index b80062615..c5db10e78 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -13,9 +13,9 @@
"astro": "^1.0.0-beta.27"
},
"dependencies": {
- "@types/react": "^18.0.0",
- "@types/react-dom": "^18.0.0",
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
+ "@types/react": "^18.0.9",
+ "@types/react-dom": "^18.0.3",
+ "react": "^18.1.0",
+ "react-dom": "^18.1.0"
}
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index bd4173051..0c9a1663a 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -13,6 +13,6 @@
"astro": "^1.0.0-beta.27"
},
"dependencies": {
- "solid-js": "^1.3.16"
+ "solid-js": "^1.3.17"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 93618975a..a9690b4c9 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -13,6 +13,6 @@
"astro": "^1.0.0-beta.27"
},
"dependencies": {
- "svelte": "^3.47.0"
+ "svelte": "^3.48.0"
}
}
diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json
index af39d140e..6a51daa29 100644
--- a/examples/integrations-playground/package.json
+++ b/examples/integrations-playground/package.json
@@ -17,15 +17,15 @@
"@astrojs/tailwind": "^0.2.1",
"@astrojs/turbolinks": "^0.1.2",
"astro": "^1.0.0-beta.27",
- "solid-js": "^1.3.6"
+ "solid-js": "^1.3.17"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.2",
- "preact": "^10.7.1",
- "react": "^18.0.0",
- "react-dom": "^18.0.0",
- "svelte": "^3.47.0",
+ "lit": "^2.2.3",
+ "preact": "^10.7.2",
+ "react": "^18.1.0",
+ "react-dom": "^18.1.0",
+ "svelte": "^3.48.0",
"vue": "^3.2.33"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 1c38677c7..3c1ad66f1 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -11,9 +11,9 @@
"devDependencies": {
"@astrojs/preact": "^0.1.2",
"astro": "^1.0.0-beta.27",
- "sass": "^1.50.1"
+ "sass": "^1.51.0"
},
"dependencies": {
- "preact": "^10.7.1"
+ "preact": "^10.7.2"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 1a16fc3e3..daff20be4 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -18,6 +18,6 @@
"vite-imagetools": "^4.0.3"
},
"dependencies": {
- "svelte": "^3.47.0"
+ "svelte": "^3.48.0"
}
}
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index fa117bdcc..bd7d3a955 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -11,10 +11,10 @@
"devDependencies": {
"@astrojs/react": "^0.1.1",
"astro": "^1.0.0-beta.27",
- "sass": "^1.50.1"
+ "sass": "^1.51.0"
},
"dependencies": {
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
+ "react": "^18.1.0",
+ "react-dom": "^18.1.0"
}
}
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index cfbc1fae2..fde7e444e 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -17,10 +17,10 @@
"astro": "^1.0.0-beta.27"
},
"dependencies": {
- "preact": "^10.7.1",
- "react": "^18.0.0",
- "react-dom": "^18.0.0",
- "svelte": "^3.47.0",
+ "preact": "^10.7.2",
+ "react": "^18.1.0",
+ "react-dom": "^18.1.0",
+ "svelte": "^3.48.0",
"vue": "^3.2.33"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 94c7b3040..036c95b6e 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -13,9 +13,9 @@
"@nanostores/react": "^0.1.5",
"@nanostores/vue": "^0.4.1",
"nanostores": "^0.5.12",
- "preact": "^10.7.1",
- "react": "^18.0.0",
- "react-dom": "^18.0.0",
+ "preact": "^10.7.2",
+ "react": "^18.1.0",
+ "react-dom": "^18.1.0",
"solid-nanostores": "0.0.6",
"vue": "^3.2.33"
},
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 8f53cea02..91553eb3b 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -11,9 +11,9 @@
"devDependencies": {
"@astrojs/tailwind": "^0.2.1",
"astro": "^1.0.0-beta.27",
- "autoprefixer": "^10.4.4",
+ "autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
- "postcss": "^8.4.12",
+ "postcss": "^8.4.13",
"tailwindcss": "^3.0.24"
}
}