astro/examples/framework-react/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
452 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": {
"astro": "^2.0.14",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"@astrojs/react": "^2.0.2",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5"
}
}