Files
Homarr/tooling/prettier/package.json

22 lines
554 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
"version": "0.1.0",
"private": true,
2023-12-08 22:35:15 +01:00
"main": "index.mjs",
"scripts": {
"clean": "rm -rf .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit"
},
"prettier": "@homarr/prettier-config",
2023-12-08 22:35:15 +01:00
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"prettier": "^3.4.2"
2023-12-08 22:35:15 +01:00
},
"devDependencies": {
"@homarr/tsconfig": "workspace:^0.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"typescript": "^5.7.2"
}
}