Files
vercel__next.js/examples/with-styled-jsx/package.json
SamPhillemon 4d8442af58 chore(examples): updated the example of with-styled-jsx to utilize the App Route (#71290)
This PR updates the with-styled-jsx example to use the App Router. Here
are the changes that have been made:

- Renamed the `pages` folder to the `app` folder.
- Added the `layout.tsx` file as part of the App Router.
- 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 19:25:15 +00:00

20 lines
368 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"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"
}
}