aboutsummaryrefslogtreecommitdiff
path: root/examples/react/package.json
blob: fa7ac4c93ccf276abb309079f3be8a009cc64c29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "name": "@bun-examples/react",
  "version": "0.1.2",
  "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"
    ]
  }
}