rsnext/examples/with-emotion-swc/package.json
John Daly f544a90ca4
Update with-emotion-swc to use TypeScript (#38744)
* Updating the with-emotion-swc example to use TypeScript

* Updating dependencies

* Adding @types packages for react and react-dom

* Adding @types/node
2022-07-18 13:25:33 -05:00

21 lines
424 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"typescript": "^4.7.4"
}
}