Files
Homarr/tooling/prettier/package.json

21 lines
509 B
JSON
Raw Normal View History

2023-12-08 22:35:15 +01:00
{
"name": "@homarr/prettier-config",
2023-12-08 22:35:15 +01:00
"private": true,
"version": "0.1.0",
"main": "index.mjs",
"scripts": {
"clean": "rm -rf .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"prettier": "^3.3.1"
2023-12-08 22:35:15 +01:00
},
"devDependencies": {
"@homarr/tsconfig": "workspace:^0.1.0",
"typescript": "^5.4.5"
2023-12-08 22:35:15 +01:00
},
"prettier": "@homarr/prettier-config"
}