2023-12-08 22:35:15 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "@homarr/auth",
|
2023-12-08 22:35:15 +01:00
|
|
|
"version": "0.1.0",
|
2024-03-14 18:43:47 +01:00
|
|
|
"type": "module",
|
2024-02-10 19:00:08 +01:00
|
|
|
"exports": {
|
|
|
|
|
".": "./index.ts",
|
2024-05-01 21:17:28 +02:00
|
|
|
"./next": "./next.ts",
|
2024-02-10 19:00:08 +01:00
|
|
|
"./security": "./security.ts",
|
|
|
|
|
"./client": "./client.ts",
|
2024-04-30 21:32:55 +02:00
|
|
|
"./shared": "./shared.ts",
|
2024-02-10 19:00:08 +01:00
|
|
|
"./env.mjs": "./env.mjs"
|
|
|
|
|
},
|
2023-12-08 22:35:15 +01:00
|
|
|
"private": true,
|
|
|
|
|
"main": "./index.ts",
|
|
|
|
|
"types": "./index.ts",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/db": "workspace:^0.1.0",
|
2024-04-20 12:49:58 +02:00
|
|
|
"@auth/core": "^0.30.0",
|
2024-04-27 14:13:42 +02:00
|
|
|
"@auth/drizzle-adapter": "^1.0.1",
|
2024-04-27 18:25:13 +02:00
|
|
|
"@t3-oss/env-nextjs": "^0.10.1",
|
2023-12-10 17:12:20 +01:00
|
|
|
"bcrypt": "^5.1.1",
|
2024-01-23 21:49:47 +01:00
|
|
|
"cookies": "^0.9.1",
|
2024-04-27 12:31:46 +02:00
|
|
|
"next": "^14.2.3",
|
2024-04-27 15:34:44 +02:00
|
|
|
"next-auth": "5.0.0-beta.17",
|
2024-04-27 12:49:17 +02:00
|
|
|
"react": "18.3.1",
|
|
|
|
|
"react-dom": "18.3.1"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/validation": "workspace:^0.1.0",
|
2023-12-10 17:12:20 +01:00
|
|
|
"@types/bcrypt": "5.0.2",
|
2024-02-04 08:28:18 +01:00
|
|
|
"@types/cookies": "0.9.0",
|
2024-02-27 21:19:06 +01:00
|
|
|
"eslint": "^8.57.0",
|
2024-02-08 19:58:56 +01:00
|
|
|
"prettier": "^3.2.5",
|
2024-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"root": true,
|
|
|
|
|
"extends": [
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/eslint-config/base"
|
2023-12-08 22:35:15 +01:00
|
|
|
]
|
|
|
|
|
},
|
2024-01-02 14:18:37 +01:00
|
|
|
"prettier": "@homarr/prettier-config"
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|