Files
Homarr/packages/common/package.json
Meier Lukas 7fa5e70d5b feat: reset password cli (#903)
* feat: add password reset cli

* feat: add homarr cli to docker image
2024-08-04 21:44:51 +02:00

39 lines
846 B
JSON

{
"name": "@homarr/common",
"private": true,
"version": "0.1.0",
"type": "module",
"exports": {
".": "./index.ts",
"./server": "./src/server.ts",
"./types": "./src/types.ts"
},
"typesVersions": {
"*": {
"*": [
"src/*"
]
}
},
"license": "MIT",
"scripts": {
"clean": "rm -rf .turbo node_modules",
"lint": "eslint",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"dayjs": "^1.11.12",
"react": "^18.3.1",
"next": "^14.2.5"
},
"devDependencies": {
"@homarr/eslint-config": "workspace:^0.2.0",
"@homarr/prettier-config": "workspace:^0.1.0",
"@homarr/tsconfig": "workspace:^0.1.0",
"eslint": "^9.8.0",
"typescript": "^5.5.4"
},
"prettier": "@homarr/prettier-config"
}