mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* feat: move adapters repo to new packages dir * fix: rm docusaurus build dir * fix: update .gitignore * fix: reorganise package directories * remove package lock files * fix: folder rename * remove package lock file * fix: jest config paths * update yarn.lock * ignore dynamodb local bin * fix: gitignore * fix: update adapter-test * change adapter-test package json * rename prisma adapter package name * fix paths * update gitignore * run tests with one concurrency * fix: merge conflicts * gitignore dist folders * fix: add jest.config.js to tsconfig ignore * fix: yarn.lock * fix: ignore pouch in turbo commands * ignore jest file * fix: test turbo test cmd * fix: turbo test cmd * test: disable mongodb-adapter temporarily * ignore all dev.db files * simplify gitignore * remove unused dependency * have tsconfig in its own package * remove unnecessary .gitignore files * move jest config to preset * add ts expect error comment * chore: update .gitignore * remove babelrc * don't depend on build for testing in turbo * fix: cleanup testing npm scripts * fix: remove jest-config roots * fix: add fauna jest preset * fix: rm dev.db from prisma mirgation * fix prisma * remove nohoist Co-authored-by: Balázs Orbán <info@balazsorban.com>
51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"name": "@next-auth/dgraph-adapter",
|
|
"version": "1.0.2",
|
|
"description": "Dgraph adapter for next-auth.",
|
|
"homepage": "https://next-auth.js.org",
|
|
"repository": "https://github.com/nextauthjs/adapters",
|
|
"bugs": {
|
|
"url": "https://github.com/nextauthjs/adapters/issues"
|
|
},
|
|
"author": "Arnaud Derbey <arnaud@derbey.dev>",
|
|
"contributors": [],
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"index.d.ts"
|
|
],
|
|
"license": "ISC",
|
|
"keywords": [
|
|
"next-auth",
|
|
"next.js",
|
|
"dgraph",
|
|
"graphql"
|
|
],
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "./tests/test.sh"
|
|
},
|
|
"peerDependencies": {
|
|
"jsonwebtoken": "^8.5.1",
|
|
"next-auth": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.24",
|
|
"@types/jsonwebtoken": "^8.5.5",
|
|
"@types/node-fetch": "^2.5.11",
|
|
"jest": "^27.0.6",
|
|
"ts-jest": "^27.0.3"
|
|
},
|
|
"dependencies": {
|
|
"jsonwebtoken": "^8.5.1",
|
|
"node-fetch": "^2.6.1"
|
|
},
|
|
"jest": {
|
|
"preset": "adapter-test/jest"
|
|
}
|
|
}
|