move react and react-dome to peer-deps

This commit is contained in:
2023-11-15 16:31:11 +01:00
parent 8d36e6cf5d
commit 8decea9d6d

View File

@@ -15,9 +15,7 @@
"build-storybook": "storybook build" "build-storybook": "storybook build"
}, },
"dependencies": { "dependencies": {
"clsx": "^2.0.0", "clsx": "^2.0.0"
"react": "^18.2.0",
"react-dom": "^18.2.0"
}, },
"devDependencies": { "devDependencies": {
"@it-incubator/eslint-config": "^1.0.1", "@it-incubator/eslint-config": "^1.0.1",
@@ -35,10 +33,16 @@
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3", "@vitejs/plugin-react": "^4.0.3",
"eslint-plugin-storybook": "^0.6.15", "eslint-plugin-storybook": "^0.6.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.5", "sass": "^1.69.5",
"storybook": "7.5.3", "storybook": "7.5.3",
"stylelint": "^15.11.0", "stylelint": "^15.11.0",
"typescript": "^5.2.2", "typescript": "^5.2.2",
"vite": "^4.5.0" "vite": "^4.5.0"
},
"peerDependencies": {
"react": ">=18.0.2",
"react-dom": ">=18.0.2"
} }
} }