astro/examples/framework-react/package.json

22 lines
451 B
JSON
Raw Normal View History

{
"name": "@example/framework-react",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
2022-08-06 04:36:23 +00:00
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/react": "^3.0.2",
2023-08-24 08:34:33 +00:00
"@types/react": "^18.2.21",
2023-08-23 11:52:13 +00:00
"@types/react-dom": "^18.2.7",
"astro": "^3.1.4",
2023-05-05 11:09:38 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}