mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2d3192e4b8
Next 4 only works with React 16, so for this example to work we need an update.
18 lines
354 B
JSON
18 lines
354 B
JSON
{
|
|
"name": "with-styled-components",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"babel-plugin-styled-components": "^1.1.5",
|
|
"next": "latest",
|
|
"react": "^16.0.0",
|
|
"react-dom": "^16.0.0",
|
|
"styled-components": "^2.1.0"
|
|
},
|
|
"license": "ISC"
|
|
}
|