mirror of
https://github.com/20kaushik02/portfolio-website.git
synced 2026-01-25 08:24:04 +00:00
* Initial plan * Initial plan: Add TypeScript overrides to package.json Co-authored-by: 20kaushik02 <59662438+20kaushik02@users.noreply.github.com> * Add TypeScript overrides to fix build failure * Fix package-lock.json to properly apply TypeScript 5.9.3 override Co-authored-by: 20kaushik02 <59662438+20kaushik02@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: 20kaushik02 <59662438+20kaushik02@users.noreply.github.com>
44 lines
891 B
JSON
44 lines
891 B
JSON
{
|
|
"name": "homepage",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@mui/icons-material": "^7.3.7",
|
|
"@mui/material": "^7.3.7",
|
|
"react": "^19.2.3",
|
|
"react-dom": "^19.2.3",
|
|
"swiper": "^12.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"react-scripts": "^5.0.1"
|
|
},
|
|
"overrides": {
|
|
"typescript": ">=5.8.3"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
} |