diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/framework-alpine/package.json | 4 | ||||
-rw-r--r-- | examples/framework-multiple/package.json | 8 | ||||
-rw-r--r-- | examples/framework-preact/package.json | 2 | ||||
-rw-r--r-- | examples/framework-react/package.json | 4 | ||||
-rw-r--r-- | examples/framework-solid/package.json | 2 | ||||
-rw-r--r-- | examples/framework-svelte/package.json | 2 | ||||
-rw-r--r-- | examples/framework-vue/package.json | 2 | ||||
-rw-r--r-- | examples/ssr/package.json | 2 | ||||
-rw-r--r-- | examples/with-markdown-plugins/package.json | 6 | ||||
-rw-r--r-- | examples/with-mdx/package.json | 2 | ||||
-rw-r--r-- | examples/with-nanostores/package.json | 4 | ||||
-rw-r--r-- | examples/with-tailwindcss/package.json | 6 | ||||
-rw-r--r-- | examples/with-vite-plugin-pwa/package.json | 2 |
13 files changed, 23 insertions, 23 deletions
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 88c5f3229..9e25ec9fc 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/alpinejs": "^0.3.1", - "@types/alpinejs": "^3.7.2", - "alpinejs": "^3.12.3", + "@types/alpinejs": "^3.13.5", + "alpinejs": "^3.13.3", "astro": "^3.5.5" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index af251b7d8..a63bbf128 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -17,11 +17,11 @@ "@astrojs/svelte": "^4.0.4", "@astrojs/vue": "^3.0.4", "astro": "^3.5.5", - "preact": "^10.17.1", + "preact": "^10.19.2", "react": "^18.2.0", "react-dom": "^18.2.0", - "solid-js": "^1.7.11", - "svelte": "^4.2.0", - "vue": "^3.3.4" + "solid-js": "^1.8.5", + "svelte": "^4.2.5", + "vue": "^3.3.8" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index c8059410c..5842b2ac9 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -14,6 +14,6 @@ "@astrojs/preact": "^3.0.1", "@preact/signals": "^1.2.1", "astro": "^3.5.5", - "preact": "^10.17.1" + "preact": "^10.19.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 79b09fc45..c1a1487bf 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@astrojs/react": "^3.0.5", - "@types/react": "^18.2.21", - "@types/react-dom": "^18.2.7", + "@types/react": "^18.2.37", + "@types/react-dom": "^18.2.15", "astro": "^3.5.5", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 8b1a9a315..d1e57543f 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -13,6 +13,6 @@ "dependencies": { "@astrojs/solid-js": "^3.0.2", "astro": "^3.5.5", - "solid-js": "^1.7.11" + "solid-js": "^1.8.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 3badefefb..370a90141 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -13,6 +13,6 @@ "dependencies": { "@astrojs/svelte": "^4.0.4", "astro": "^3.5.5", - "svelte": "^4.2.0" + "svelte": "^4.2.5" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 99a6b678f..d9fd35d0f 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -13,6 +13,6 @@ "dependencies": { "@astrojs/vue": "^3.0.4", "astro": "^3.5.5", - "vue": "^3.3.4" + "vue": "^3.3.8" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 04c0d6984..ad05511bb 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -15,6 +15,6 @@ "@astrojs/node": "^6.0.4", "@astrojs/svelte": "^4.0.4", "astro": "^3.5.5", - "svelte": "^4.2.0" + "svelte": "^4.2.5" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index ad51e3f98..4d2efc5e8 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -13,9 +13,9 @@ "dependencies": { "@astrojs/markdown-remark": "^3.5.0", "astro": "^3.5.5", - "hast-util-select": "^5.0.5", - "rehype-autolink-headings": "^6.1.1", - "rehype-slug": "^5.1.0", + "hast-util-select": "^6.0.2", + "rehype-autolink-headings": "^7.1.0", + "rehype-slug": "^6.0.0", "rehype-toc": "^3.0.2", "remark-code-titles": "^0.1.2" } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 13f77a46e..ab0577144 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -14,6 +14,6 @@ "@astrojs/mdx": "^1.1.5", "@astrojs/preact": "^3.0.1", "astro": "^3.5.5", - "preact": "^10.17.1" + "preact": "^10.19.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 14ae5ab8d..7946c0e3c 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -14,7 +14,7 @@ "@astrojs/preact": "^3.0.1", "@nanostores/preact": "^0.5.0", "astro": "^3.5.5", - "nanostores": "^0.9.3", - "preact": "^10.17.1" + "nanostores": "^0.9.5", + "preact": "^10.19.2" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 3a3e83dd3..166fd02ea 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -13,11 +13,11 @@ "dependencies": { "@astrojs/mdx": "^1.1.5", "@astrojs/tailwind": "^5.0.2", - "@types/canvas-confetti": "^1.6.0", + "@types/canvas-confetti": "^1.6.3", "astro": "^3.5.5", "autoprefixer": "^10.4.15", - "canvas-confetti": "^1.6.0", + "canvas-confetti": "^1.9.1", "postcss": "^8.4.28", - "tailwindcss": "^3.3.3" + "tailwindcss": "^3.3.5" } } diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index adc9a8032..775f5752e 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "astro": "^3.5.5", - "vite-plugin-pwa": "0.16.4", + "vite-plugin-pwa": "0.17.0", "workbox-window": "^7.0.0" } } |