2024-05-16 02:17:33 +04:00
|
|
|
{
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "xo"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-05-16 20:44:56 +04:00
|
|
|
"@directus/sdk": "^16.0.0",
|
2024-05-17 08:42:30 +04:00
|
|
|
"@emotion/cache": "^11.11.0",
|
2024-09-02 09:51:14 +04:00
|
|
|
"@emotion/react": "^11.13.3",
|
|
|
|
|
"@emotion/styled": "^11.13.0",
|
2024-05-16 19:38:20 +04:00
|
|
|
"@fontsource/roboto": "^5.0.13",
|
2024-09-02 10:41:12 +04:00
|
|
|
"@mui/icons-material": "^6.0.1",
|
2024-09-02 09:51:14 +04:00
|
|
|
"@mui/material": "^6.0.1",
|
|
|
|
|
"@mui/material-nextjs": "^6.0.1",
|
2024-06-19 09:04:10 +04:00
|
|
|
"date-fns": "^3.6.0",
|
2024-05-16 02:17:33 +04:00
|
|
|
"next": "^14.2.3",
|
2024-06-18 11:10:30 +04:00
|
|
|
"next-auth": "^5.0.0-beta.18",
|
2024-05-16 02:17:33 +04:00
|
|
|
"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"
|
|
|
|
|
}
|
2024-05-17 08:29:06 +04:00
|
|
|
],
|
|
|
|
|
"n/prefer-global/process": "off",
|
2024-05-20 04:04:25 +04:00
|
|
|
"comma-dangle": "off",
|
|
|
|
|
"unicorn/prevent-abbreviations": "off"
|
2024-05-16 02:17:33 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|