turborepo/examples/basic/apps/docs/package.json
Anthony Shew bf54c05eb1
Bump examples to 2.0.0. (#8284)
# DO NOT MERGE AS IS

This PR was put together prior to the publish of 2.0.0 to npm. Lockfiles
in the examples are not updated so you need to go through each one and
run the package manager install command to make sure they are corrected.

### Description

Bumping examples to 2.0.0. 🥳 

## Testing Instructions

CI

---------

Co-authored-by: Chris Olszewski <chris.olszewski@vercel.com>
2024-06-04 20:59:55 +00:00

29 lines
715 B
JSON

{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo --port 3001",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@repo/ui": "workspace:*",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"next": "15.0.0-rc.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "15.0.0-rc.0"
}
}