This repository has been archived by the owner on Mar 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
72 lines (72 loc) · 1.47 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
{
"name": "@next-auth/react-query",
"repository": {
"url": "https://github.com/nextauthjs/react-query"
},
"bugs": {
"url": "https://github.com/nextauthjs/react-query/issues"
},
"author": "Balázs Orbán <[email protected]>",
"license": "ISC",
"version": "0.0.12",
"description": "React Query wrapper for NextAuth.js session management",
"keywords": [
"next-auth",
"react-query"
],
"exports": {
".": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"dist/*"
],
"scripts": {
"build": "node build.js",
"test:ci": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"next": "^10.0.3",
"next-auth": "^3.15.9",
"react": "^17.0.2",
"react-query": "^3.13.11"
},
"devDependencies": {
"esbuild": "^0.12.6",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"next": "^10.0.3",
"next-auth": "^3.15.9",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-query": "^3.13.11"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"ignorePatterns": [
"node_modules",
"index.d.ts"
],
"globals": {
"fetch": "readonly"
}
}
}