also looking at this
chore(deps): update dependency @types/react to 19.2.2
#176
2 files
+2
-2
Review threads live on the whole diff, not on one commit, so none are shown here - a thread's line means something in the branch's final form, and painting it into an intermediate step would put it on code it is not about.
| @@ -0,0 +1,27 @@ | ||
| 1 | { | |
| 2 | "name": "bun-package-manager-with-deps", | |
| 3 | "version": "1.0.0", | |
| 4 | "packageManager": "bun@latest", | |
| 5 | "description": "Test environment for Bun package manager with additional dependencies", | |
| 6 | "scripts": { | |
| 7 | "dev": "next dev", | |
| 8 | "build": "next build", | |
| 9 | "start": "next start", | |
| 10 | "lint": "next lint", | |
| 11 | "prettier": "bunx prettier --write .", | |
| 12 | "test": "bun test" | |
| 13 | }, | |
| 14 | "dependencies": { | |
| 15 | "next": "^14.0.0", | |
| 16 | "react": "^18.0.0", | |
| 17 | "react-dom": "^18.0.0" | |
| 18 | }, | |
| 19 | "devDependencies": { | |
| 20 | "@types/node": "^20.0.0", | |
| 21 | "@types/react": "^19.2.2", | |
| 22 | "eslint": "^8.0.0", | |
| 23 | "eslint-config-next": "^14.0.0", | |
| 24 | "prettier": "^3.0.0", | |
| 25 | "typescript": "^5.0.0" | |
| 26 | } | |
| 27 | } | |