aboutsummaryrefslogtreecommitdiff
path: root/examples/container-with-vitest/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/container-with-vitest/package.json')
-rw-r--r--examples/container-with-vitest/package.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json
new file mode 100644
index 000000000..473e3f11b
--- /dev/null
+++ b/examples/container-with-vitest/package.json
@@ -0,0 +1,24 @@
+{
+ "name": "@example/container-with-vitest",
+ "type": "module",
+ "version": "0.0.1",
+ "private": true,
+ "scripts": {
+ "dev": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "astro": "astro",
+ "test": "vitest run"
+ },
+ "dependencies": {
+ "@astrojs/react": "^4.3.0",
+ "astro": "^5.9.0",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1",
+ "vitest": "^3.1.1"
+ },
+ "devDependencies": {
+ "@types/react": "^18.3.20",
+ "@types/react-dom": "^18.3.6"
+ }
+}