47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "xo"
|
|
},
|
|
"dependencies": {
|
|
"@directus/sdk": "^16.0.0",
|
|
"@emotion/cache": "^11.11.0",
|
|
"@emotion/react": "^11.11.4",
|
|
"@emotion/styled": "^11.11.5",
|
|
"@fontsource/roboto": "^5.0.13",
|
|
"@mui/icons-material": "^5.15.18",
|
|
"@mui/material": "^5.15.18",
|
|
"@mui/material-nextjs": "^5.15.11",
|
|
"next": "^14.2.3",
|
|
"next-auth": "^4.24.7",
|
|
"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"
|
|
],
|
|
"rules": {
|
|
"react/function-component-definition": [
|
|
"error",
|
|
{
|
|
"namedComponents": "function-declaration"
|
|
}
|
|
],
|
|
"n/prefer-global/process": "off",
|
|
"comma-dangle": "off",
|
|
"unicorn/prevent-abbreviations": "off"
|
|
}
|
|
}
|
|
}
|