Files
bun.sh/examples/react/package.json
Jonathan Rubin b901f55164 chores(template/react): Update to React 18 (#627)
* Updated react example template

* build:(landing) automated website build

* removed bun.lockb and most of changes from react example index.html

Co-authored-by: rubinj30 <rubinj30@users.noreply.github.com>
2022-07-15 12:17:38 +02:00

23 lines
365 B
JSON

{
"name": "@bun-examples/react",
"version": "0.1.0",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"web-vitals": "^2.1.4"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"devDependencies": {
"typescript": "latest"
},
"bun-create": {
"postinstall": [
"bun bun ./src/index.jsx"
]
}
}