* Upgraded to Next.js 16 * Refactored code to comply with React 19.2 ESLint rules * Refactored some useEffect usages with the new useEffectEvent * Added Identities page and added second step to set up an identity after accepting an invitation * Updated all dependencies * Introduced PNPM catalogs for some frequently updated dependencies * Bugs fixing and improvements
22 lines
519 B
JSON
22 lines
519 B
JSON
{
|
|
"name": "@kit/prettier-config",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"main": "index.mjs",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{mjs,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "5.2.2",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-tailwindcss": "^0.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/tsconfig": "workspace:*",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"prettier": "./index.mjs"
|
|
}
|