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>
35 lines
953 B
JSON
35 lines
953 B
JSON
{
|
|
"name": "adapter-test",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/nextauthjs/next-auth.git",
|
|
"contributors": [
|
|
"Balázs Orbán <info@balazsorban.com>",
|
|
"Nico Domino <yo@ndo.dev>"
|
|
],
|
|
"files": [
|
|
"jest"
|
|
],
|
|
"license": "ISC",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.14.3",
|
|
"@babel/plugin-transform-runtime": "^7.14.3",
|
|
"@babel/preset-env": "^7.14.2",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/nodemailer": "^6.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.24.0",
|
|
"@typescript-eslint/parser": "^4.24.0",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-config-standard-with-typescript": "^20.0.0",
|
|
"eslint-plugin-import": "^2.23.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"jest": "^27.0.3",
|
|
"next-auth": "latest",
|
|
"prettier": "^2.3.0",
|
|
"ts-jest": "^27.0.3",
|
|
"typescript": "^4.2.4"
|
|
}
|
|
}
|