Files
konstitisyon.nu/package.json
T
2024-05-16 02:17:33 +04:00

35 lines
607 B
JSON

{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "xo"
},
"dependencies": {
"next": "^14.2.3",
"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"
}
]
}
}
}