mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 00:40:58 +01:00
* refactor: improve user feedback for general board settings section * wip: add board settings for background and colors, move danger zone to own file, refactor code * feat: add shade selector * feat: add slider for opacity * fix: issue with invalid hex values for color preview * refactor: add shared mutation hook for saving partial board settings with invalidate query * fix: add cleanup for not applied changes to logo and page title * feat: add layout settings * feat: add empty custom css section to board settings * refactor: improve layout of board logo on mobile * feat: add theme provider for board colors * refactor: add auto contrast for better contrast of buttons with low primary shade * feat: add background for boards * feat: add opacity for boards * feat: add rename board * feat: add visibility and delete of board settings * fix: issue that wrong data is updated with update board method * refactor: improve danger zone button placement for mobile * fix: board not revalidated when already in boards layout * refactor: improve board color preview * refactor: change save button color to teal, add placeholders for general board settings * chore: update initial migration * refactor: remove unnecessary div * chore: address pull request feedback * fix: ci issues * fix: deepsource issues * chore: address pull request feedback * fix: formatting issue * chore: address pull request feedback
80 lines
2.5 KiB
JSON
80 lines
2.5 KiB
JSON
{
|
|
"name": "@homarr/nextjs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "pnpm with-env next build",
|
|
"clean": "git clean -xdf .next .turbo node_modules",
|
|
"dev": "pnpm with-env next dev",
|
|
"lint": "dotenv -v SKIP_ENV_VALIDATION=1 next lint",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"start": "pnpm with-env next start",
|
|
"typecheck": "tsc --noEmit",
|
|
"with-env": "dotenv -e ../../.env --"
|
|
},
|
|
"dependencies": {
|
|
"@homarr/api": "workspace:^0.1.0",
|
|
"@homarr/auth": "workspace:^0.1.0",
|
|
"@homarr/common": "workspace:^0.1.0",
|
|
"@homarr/db": "workspace:^0.1.0",
|
|
"@homarr/definitions": "workspace:^0.1.0",
|
|
"@homarr/form": "workspace:^0.1.0",
|
|
"@homarr/gridstack": "^1.0.0",
|
|
"@homarr/log": "workspace:^",
|
|
"@homarr/notifications": "workspace:^0.1.0",
|
|
"@homarr/spotlight": "workspace:^0.1.0",
|
|
"@homarr/translation": "workspace:^0.1.0",
|
|
"@homarr/ui": "workspace:^0.1.0",
|
|
"@homarr/validation": "workspace:^0.1.0",
|
|
"@homarr/widgets": "workspace:^0.1.0",
|
|
"@mantine/colors-generator": "^7.5.3",
|
|
"@mantine/hooks": "^7.5.3",
|
|
"@mantine/modals": "^7.5.3",
|
|
"@mantine/tiptap": "^7.5.3",
|
|
"@t3-oss/env-nextjs": "^0.9.2",
|
|
"@tanstack/react-query": "^5.24.1",
|
|
"@tanstack/react-query-devtools": "^5.24.1",
|
|
"@tanstack/react-query-next-experimental": "5.24.1",
|
|
"@tiptap/extension-link": "^2.2.4",
|
|
"@tiptap/react": "^2.2.4",
|
|
"@tiptap/starter-kit": "^2.2.4",
|
|
"@trpc/client": "next",
|
|
"@trpc/next": "next",
|
|
"@trpc/react-query": "next",
|
|
"@trpc/server": "next",
|
|
"chroma-js": "^2.4.2",
|
|
"dayjs": "^1.11.10",
|
|
"jotai": "^2.7.0",
|
|
"mantine-modal-manager": "^7.5.3",
|
|
"next": "^14.1.1",
|
|
"postcss-preset-mantine": "^1.13.0",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"sass": "^1.71.1",
|
|
"superjson": "2.2.1",
|
|
"use-deep-compare-effect": "^1.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
"@types/node": "^20.11.24",
|
|
"@types/react": "^18.2.61",
|
|
"@types/react-dom": "^18.2.19",
|
|
"@types/chroma-js": "2.4.4",
|
|
"dotenv-cli": "^7.3.0",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@homarr/eslint-config/base",
|
|
"@homarr/eslint-config/nextjs",
|
|
"@homarr/eslint-config/react"
|
|
]
|
|
},
|
|
"prettier": "@homarr/prettier-config"
|
|
}
|