Files
konstitisyon.nu/package.json
T

52 lines
1.2 KiB
JSON
Raw Normal View History

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",
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",
2024-09-15 18:00:33 +04:00
"react-dom": "^18.3.1",
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
}
}
}