commit 1d6e5b29cb7610ea03d85121e220b7e789080ee2
parent c41c9a8c945be445a3a1ddbbfef5dee1257a43ed
Author: massi <git@massi.world>
Date: Thu, 10 Apr 2025 11:02:57 -0700
add prettier
Diffstat:
3 files changed, 24 insertions(+), 5 deletions(-)
diff --git a/.prettierrc b/.prettierrc
@@ -0,0 +1 @@
+{}
diff --git a/package-lock.json b/package-lock.json
@@ -17,6 +17,7 @@
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
+ "prettier": "3.5.3",
"tailwindcss": "^4",
"typescript": "^5"
}
@@ -1332,6 +1333,22 @@
"node": "^10 || ^12 || >=14"
}
},
+ "node_modules/prettier": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
+ "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
"node_modules/react": {
"version": "19.1.0",
"resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz",
diff --git a/package.json b/package.json
@@ -9,16 +9,17 @@
"lint": "next lint"
},
"dependencies": {
+ "next": "15.2.5",
"react": "^19.0.0",
- "react-dom": "^19.0.0",
- "next": "15.2.5"
+ "react-dom": "^19.0.0"
},
"devDependencies": {
- "typescript": "^5",
+ "@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
- "@tailwindcss/postcss": "^4",
- "tailwindcss": "^4"
+ "prettier": "3.5.3",
+ "tailwindcss": "^4",
+ "typescript": "^5"
}
}