Files
vercel__next.js/examples/with-goober/package.json
Manoj M S a1dbc073e4 chore(examples): updated the example of with-goober to utlize the App router (#71349)
This PR updates the `with-goober` example to use the App Router. Here
are the changes that have been made:

- Renamed the `pages` folder to the` app` folder.
- Converted the `index.tsx` to ` page.tsx ` file as part of the App
Router.
- Created a new `layout.tsx` file in the app directory.
- Merged functionality from both `_app.tsx` and `_document.tsx` into
`layout.tsx`:
    -  Goober setup from `_app.tsx`
    -  CSS extraction and injection from `_document.tsx`
- Updated the `package.json` file.


The following actions were performed as part of this PR:

- Ran `pnpm prettier-check` with no issues found.
- Executed the `pnpm check-examples` script.

**CC:** @samcx

---------

Co-authored-by: samcx <sam@vercel.com>
2024-10-17 17:57:06 +00:00

22 lines
429 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"goober": "^2.1.16",
"goober-autoprefixer": "^1.2.3",
"next": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "18.3.1",
"typescript": "^5.6.3"
}
}