chore: add prettier

This commit is contained in:
Mathias Schopmans
2024-02-09 08:39:58 +01:00
committed by Mathias Schopmans
parent 81a15c9cd2
commit 064918ff4d
4 changed files with 548 additions and 6 deletions

View File

@@ -6,19 +6,22 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"fix": "prettier . --write"
},
"dependencies": {
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"next": "14.1.0"
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.1.0"
"eslint-config-next": "14.1.0",
"prettier": "^3.2.5",
"typescript": "^5"
}
}