2024-05-16 02:17:33 +04:00
|
|
|
{
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "xo"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-12-03 08:00:11 +04:00
|
|
|
"@directus/sdk": "^18.0.1",
|
2024-12-03 07:56:11 +04:00
|
|
|
"@emotion/cache": "^11.13.5",
|
|
|
|
|
"@emotion/react": "^11.13.5",
|
|
|
|
|
"@emotion/styled": "^11.13.5",
|
|
|
|
|
"@fontsource/roboto": "^5.1.0",
|
|
|
|
|
"@mui/icons-material": "^6.1.9",
|
2025-07-23 17:39:02 +04:00
|
|
|
"@mui/lab": "^7.0.0-beta.14",
|
2024-12-03 07:56:11 +04:00
|
|
|
"@mui/material": "^6.1.9",
|
|
|
|
|
"@mui/material-nextjs": "^6.1.9",
|
2025-07-23 12:20:36 +04:00
|
|
|
"@uiw/react-md-editor": "^4.0.8",
|
2024-06-19 09:04:10 +04:00
|
|
|
"date-fns": "^3.6.0",
|
2025-07-23 20:31:55 +04:00
|
|
|
"html2canvas": "^1.4.1",
|
|
|
|
|
"jspdf": "^3.0.1",
|
2025-07-23 20:35:41 +04:00
|
|
|
"marked": "^16.1.1",
|
2025-07-24 11:15:35 +04:00
|
|
|
"next": "15.4.3",
|
2025-07-24 12:13:45 +04:00
|
|
|
"next-auth": "5.0.0-beta.25",
|
2025-07-24 11:15:35 +04:00
|
|
|
"react": "19",
|
|
|
|
|
"react-dom": "19",
|
2025-07-23 18:49:38 +04:00
|
|
|
"react-virtuoso": "^4.10.2",
|
|
|
|
|
"use-debounce": "^10.0.5"
|
2024-05-16 02:17:33 +04:00
|
|
|
},
|
|
|
|
|
"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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|