Files
TechRadarAJR/package.json
Mathias Schopmans 064918ff4d chore: add prettier
2024-03-11 10:40:14 +01:00

28 lines
592 B
JSON

{
"name": "aoe-next-techradar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "prettier . --write"
},
"dependencies": {
"next": "14.1.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@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",
"prettier": "^3.2.5",
"typescript": "^5"
}
}