mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* 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>
23 lines
365 B
JSON
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"
|
|
]
|
|
}
|
|
}
|