Files
konstitisyon.nu/package.json
T

70 lines
1.6 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",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
2024-05-16 02:17:33 +04:00
},
"dependencies": {
2026-01-03 11:59:00 +04:00
"@directus/sdk": "^20.3.0",
2026-01-04 11:00:48 +04:00
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.9",
"@mui/icons-material": "^7.3.6",
"@mui/lab": "^7.0.1-beta.20",
"@mui/material": "^7.3.6",
"@mui/material-nextjs": "^7.3.6",
"@uiw/react-md-editor": "^4.0.11",
2026-01-03 13:50:36 +04:00
"date-fns": "^4.1.0",
2025-07-23 20:31:55 +04:00
"html2canvas": "^1.4.1",
"jspdf": "^4.0.0",
"marked": "^17.0.1",
2025-12-23 19:09:40 +04:00
"next": "^16.1.0",
2026-01-24 13:42:20 +04:00
"next-auth": "^5.0.0-beta.30",
2025-12-23 19:09:40 +04:00
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-virtuoso": "^4.18.1",
2025-07-23 18:49:38 +04:00
"use-debounce": "^10.0.5"
2024-05-16 02:17:33 +04:00
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
2024-05-16 02:17:33 +04:00
"eslint-config-xo-nextjs": "^6.0.0",
"vitest": "^4.1.4",
2024-05-16 02:17:33 +04:00
"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"
},
"overrides": [
{
"files": "lib/__tests__/**/*.js",
"envs": ["node", "es2020"],
"rules": {
"camelcase": ["error", {"properties": "never"}],
"capitalized-comments": "off"
}
}
]
2024-05-16 02:17:33 +04:00
}
}