forked from AmruthPillai/next-auth-hasura-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "@selectcode/next-auth-hasura-adapter",
"version": "1.0.4",
"description": "This is the Hasura Adapter for next-auth. This package can only be used in conjunction with the primary next-auth package. It is not a standalone package.",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/selectcode/next-auth-hasura-adapter.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc-watch",
"build": "tsc",
"codegen": "graphql-codegen --config codegen.yml",
"format": "prettier --write .",
"lint": "eslint .",
"prepublish": "tsc"
},
"keywords": [
"next.js",
"next-auth",
"hasura"
],
"author": "Amruth Pillai <im.amruth@gmail.com>",
"license": "ISC",
"peerDependencies": {
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"graphql-tag": "^2.12.6",
"hasura-cli": "^2.9.0",
"next-auth": "^4.18.6"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.6",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-graphql-request": "^4.5.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"encoding": "^0.1.13",
"eslint": "^8.22.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}