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.52 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": "next-auth-hasura-adapter",
"version": "2.0.0",
"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/AmruthPillai/next-auth-hasura-adapter.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc-watch",
"build": "tsc",
"codegen": "graphql-codegen --config src/codegen.ts",
"format": "prettier --write .",
"lint": "eslint .",
"prepublish": "tsc"
},
"keywords": [
"next.js",
"next-auth",
"hasura"
],
"author": "Amruth Pillai <[email protected]>",
"license": "MIT",
"peerDependencies": {
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"next-auth": "^4.22.1"
},
"devDependencies": {
"@graphql-codegen/cli": "4.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-graphql-request": "5.0.0",
"@graphql-codegen/typescript-operations": "4.0.1",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"dotenv": "^16.4.3",
"eslint": "8.45.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"hasura-cli": "2.30.0",
"prettier": "3.0.0",
"tsc-watch": "6.0.4",
"typescript": "5.1.6"
}
}