bug fix on a pull request #64911 (#64925)

### What?

Fixes a bug of removed dependencies by accident, which caused the
example not to install dependencies.

### How to test?

Running this script should initiate a project that works correctly:
```
 pnpm create next-app --example with-storybook with-storybook-app
```


Fixes this pull request https://github.com/vercel/next.js/pull/64911
This commit is contained in:
zahra shahrouzi 2024-04-23 21:31:31 +03:30 committed by GitHub
parent 04f5f87586
commit dd9324f6c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,6 +8,11 @@
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"next": "14.2.2",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@storybook/addon-essentials": "^8.0.9",