feat: add prettier packagejson plugin (#1577)

This commit is contained in:
Manuel
2024-12-01 22:59:11 +01:00
committed by GitHub
parent 0ab9d0bd69
commit a53a2cdd34
13 changed files with 124 additions and 37 deletions

View File

@@ -1,7 +1,8 @@
{
"name": "@homarr/request-handler",
"private": true,
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
"./*": "./src/*.ts"
@@ -13,13 +14,13 @@
]
}
},
"license": "MIT",
"scripts": {
"clean": "rm -rf .turbo node_modules",
"lint": "eslint",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit"
},
"prettier": "@homarr/prettier-config",
"dependencies": {
"@homarr/common": "workspace:^0.1.0",
"@homarr/db": "workspace:^0.1.0",
@@ -36,6 +37,5 @@
"@homarr/tsconfig": "workspace:^0.1.0",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
},
"prettier": "@homarr/prettier-config"
}
}