25 lines
596 B
JSON
25 lines
596 B
JSON
{
|
|
"name": "@acme/auth",
|
|
"version": "0.1.0",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@acme/db": "*",
|
|
"@next-auth/prisma-adapter": "^1.0.5",
|
|
"next": "^13.0.5",
|
|
"next-auth": "^4.17.0",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.28.0",
|
|
"typescript": "^4.9.3"
|
|
}
|
|
}
|