Files
Homarr/apps/auth-proxy/package.json

32 lines
795 B
JSON
Raw Normal View History

2023-12-08 22:35:15 +01:00
{
"name": "@alparr/auth-proxy",
2023-12-08 22:35:15 +01:00
"private": true,
"type": "module",
"scripts": {
"build": "nitro build",
"clean": "rm -rf .turbo node_modules",
"dev": "nitro dev --port 3001",
"lint": "eslint .",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@auth/core": "^0.18.4"
},
"devDependencies": {
"@alparr/eslint-config": "workspace:^0.2.0",
"@alparr/prettier-config": "workspace:^0.1.0",
"@alparr/tsconfig": "workspace:^0.1.0",
2023-12-08 22:35:15 +01:00
"eslint": "^8.53.0",
"nitropack": "^2.8.1",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"extends": [
"@alparr/eslint-config/base"
2023-12-08 22:35:15 +01:00
]
},
"prettier": "@alparr/prettier-config"
}