Update Chakra-UI dependencies for React 18 (#37772)

Title self-explanatory: the package.json inside of the with-chakra-ui example template has been updated to newer versions


Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
This commit is contained in:
dfelsie 2022-06-16 23:21:06 -04:00 committed by GitHub
parent c480726da2
commit e4b1fb0793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,19 +6,20 @@
"start": "next start" "start": "next start"
}, },
"dependencies": { "dependencies": {
"@chakra-ui/icons": "^1.1.7", "@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "1.8.8", "@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11", "@chakra-ui/theme-tools": "^2.0.2",
"@emotion/styled": "^11", "@emotion/react": "^11.9.0",
"framer-motion": "^6", "@emotion/styled": "^11.9.0",
"framer-motion": "^6.3.0",
"next": "latest", "next": "latest",
"react": "^17.0.2", "react": "^18.2.0",
"react-dom": "^17.0.2" "react-dom": "^18.2.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^14.6.0", "@types/node": "^18.0.0",
"@types/react": "^17.0.3", "@types/react": "^18.0.0",
"@types/react-dom": "^17.0.3", "@types/react-dom": "^18.0.0",
"typescript": "4.3.2" "typescript": "^4.7.2"
} }
} }