forked from aerogear/keycloak-connect-graphql
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.87 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
{
"name": "@dbateman/keycloak-connect-graphql",
"version": "16.9.1",
"description": "Add Keycloak authentication and authorization to your GraphQL server via schema directives.",
"keywords": [
"graphql",
"apollo",
"keycloak",
"authentication",
"express"
],
"author": "dbateman",
"homepage": "https://github.com/dbateman/keycloak-connect-graphql",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dbateman/keycloak-connect-graphql"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:clean": "tsc --build tsconfig.build.json --clean",
"watch": "tsc --watch",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint '*/*/src/**/*.ts' --exclude 'src/**/*.test.ts' && tslint -c tslint_tests.json 'src/**/*.test.ts'",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.sh",
"release:publish": "./scripts/publishRelease.sh",
"examples:seed": "node scripts/initKeycloak.js"
},
"type": "commonjs",
"dependencies": {
"@graphql-tools/utils": "9.2.1"
},
"devDependencies": {
"@apollo/server": "4.5.0",
"@types/express-session": "1.17.3",
"@types/graphql": "14.2.3",
"@types/jest": "29.5.0",
"@types/keycloak-connect": "4.5.4",
"@types/node": "18.15.3",
"cors": "2.8.5",
"graphql": "16.6.0",
"graphql-subscriptions": "2.0.0",
"jest": "29.5.0",
"keycloak-connect": "12.0.1",
"keycloak-request-token": "0.1.0",
"subscriptions-transport-ws": "0.9.18",
"ts-jest": "29.0.5",
"ts-node": "9.1.1",
"tslint": "5.20.1",
"typescript": "4.9.5"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0",
"keycloak-connect": ">=9.0.0"
}
}