mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
* feat: add user groups * wip: add unit tests * wip: add more tests and normalized name for creation and update * test: add unit tests for group router * fix: type issues, missing mysql schema, rename column creator_id to owner_id * fix: lint and format issues * fix: deepsource issues * fix: forgot to add log message * fix: build not working * chore: address pull request feedback * feat: add mysql migration and fix merge conflicts * fix: format issue and test issue
41 lines
883 B
JSON
41 lines
883 B
JSON
{
|
|
"name": "@homarr/ui",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"exports": {
|
|
".": "./index.ts",
|
|
"./styles.css": "./src/styles.css"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
"@types/css-modules": "^1.0.5",
|
|
"eslint": "^8.57.0",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"dependencies": {
|
|
"@homarr/log": "workspace:^0.1.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@homarr/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@homarr/prettier-config"
|
|
}
|