mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
* wip: Add gridstack board * wip: Centralize board pages, Add board settings page * fix: remove cyclic dependency and rename widget-sort to kind * improve: Add header actions as parallel route * feat: add item select modal, add category edit modal, * feat: add edit item modal * feat: add remove item modal * wip: add category actions * feat: add saving of board, wip: add app widget * Merge branch 'main' into add-board * chore: update turbo dependencies * chore: update mantine dependencies * chore: fix typescript errors, lint and format * feat: add confirm modal to category removal, move items of removed category to above wrapper * feat: remove app widget to continue in another branch * feat: add loading spinner until board is initialized * fix: issue with cellheight of gridstack items * feat: add translations for board * fix: issue with translation for settings page * chore: address pull request feedback
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "homarr",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=18.18.2"
|
|
},
|
|
"packageManager": "pnpm@8.11.0",
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"clean": "git clean -xdf node_modules",
|
|
"clean:workspaces": "turbo clean",
|
|
"db:push": "pnpm -F db push",
|
|
"db:studio": "pnpm -F db studio",
|
|
"dev": "turbo dev --parallel",
|
|
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
|
|
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
|
|
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
|
|
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
|
|
"lint:ws": "pnpm dlx sherif@latest",
|
|
"typecheck": "turbo typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
"@turbo/gen": "^1.12.2",
|
|
"prettier": "^3.1.0",
|
|
"turbo": "^1.12.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@auth/core": "0.18.0"
|
|
}
|
|
},
|
|
"prettier": "@homarr/prettier-config"
|
|
} |