forked from nextauthjs/next-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "root",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/nextauthjs/next-auth.git",
"scripts": {
"build:app": "turbo run build --filter=next-auth-app",
"build:docs": "turbo run build --filter=docs",
"build": "turbo run build --filter=next-auth --filter=@auth/*",
"test": "turbo run test --concurrency=1 --filter=[HEAD^1] --filter=./packages/* --filter=!*app* --filter=!*dynamo* --filter=!*edgedb* --filter=!*hasura* --filter=!*mikro* --filter=!*dgraph* --filter=!*xata* --filter=!*typeorm*",
"test:e2e": "turbo run test:e2e --filter=next-auth",
"test:e2e:watch": "turbo run test:e2e -- --ui",
"clean": "turbo run clean --no-cache",
"dev": "pnpm dev:next",
"dev:next": "turbo run dev --parallel --continue --filter=next-auth-app... --filter=@auth/core --filter=!./packages/adapter-*",
"dev:e2e:next": "turbo run dev --filter=next-auth-app",
"dev:db": "turbo run dev --parallel --continue --filter=next-auth-app...",
"dev:sveltekit": "turbo run dev --parallel --continue --filter=sveltekit-auth-app...",
"dev:express": "turbo run dev --parallel --continue --filter=express-auth-app...",
"dev:qwik": "turbo run dev --parallel --continue --filter=qwik-auth-app...",
"dev:docs": "turbo run dev --filter=docs",
"email": "fake-smtp-server",
"lint": "eslint --cache .",
"format": "prettier --cache --check .",
"format:write": "prettier --cache --write .",
"release": "release",
"peek": "pnpm release --peek",
"version:pr": "node ./config/version-pr",
"setup-fw-integration": "pnpm clean --filter=@auth/frameworks-template && node packages/utils/scripts/setup-fw-integration.js"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@balazsorban/monorepo-release": "0.5.1",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@playwright/test": "1.40.0",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "v6.19.1",
"@typescript-eslint/parser": "v6.19.1",
"@vitest/coverage-v8": "1.2.1",
"@vitest/ui": "^1.2.2",
"eslint": "9.9.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import-x": "^4.1.1",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-svelte": "^2.38.0",
"fake-smtp-server": "^0.8.0",
"lefthook": "1.7.15",
"globals": "^15.9.0",
"prettier": "3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"svelte-eslint-parser": "^0.35.0",
"turbo": "^2.1.1",
"typescript": "5.3.3",
"typescript-eslint": "^8.3.0",
"utils": "workspace:*",
"vite": "^5.0.13",
"vitest": "1.2.2"
},
"engines": {
"node": "^18.18.0 || ^20.8.0 || ^22.0.0"
},
"packageManager": "[email protected]+sha512.98a80fd11c2e7096747762304106432b3ddc67dcf54b5a8c01c93f68a2cd5e05e6821849522a06fb76284d41a2660d5e334f2ee3bbf29183bf2e739b1dafa771",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/balazsorban44"
},
{
"type": "opencollective",
"url": "https://opencollective.com/nextauth"
}
],
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
]
},
"pnpm": {
"overrides": {
"mailparser": "3.6.6"
},
"patchedDependencies": {
"@balazsorban/[email protected]": "patches/@[email protected]"
}
}
}