2024-05-16 02:17:33 +04:00
|
|
|
{
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "xo"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-05-16 19:34:18 +04:00
|
|
|
"@emotion/react": "^11.11.4",
|
|
|
|
|
"@emotion/styled": "^11.11.5",
|
|
|
|
|
"@mui/material": "^5.15.18",
|
2024-05-16 02:17:33 +04:00
|
|
|
"next": "^14.2.3",
|
|
|
|
|
"react": "^18.3.1",
|
|
|
|
|
"react-dom": "^18.3.1"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"eslint-config-xo-nextjs": "^6.0.0",
|
|
|
|
|
"xo": "^0.58.0"
|
|
|
|
|
},
|
|
|
|
|
"xo": {
|
|
|
|
|
"extends": "xo-nextjs",
|
|
|
|
|
"semicolon": false,
|
|
|
|
|
"space": 2,
|
|
|
|
|
"envs": [
|
|
|
|
|
"browser",
|
|
|
|
|
"es2020"
|
|
|
|
|
],
|
2024-05-16 19:34:18 +04:00
|
|
|
"rules": {
|
2024-05-16 02:17:33 +04:00
|
|
|
"react/function-component-definition": [
|
|
|
|
|
"error",
|
|
|
|
|
{
|
|
|
|
|
"namedComponents": "function-declaration"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|