forked from ferrerojosh/nest-keycloak-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "nest-keycloak-connect",
"version": "1.6.1",
"description": "keycloak-nodejs-connect module for Nest",
"author": "John Joshua Ferrer <johnjoshuaferrer@disroot.org>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"start:dev": "tsc -w",
"prebuild": "rimraf dist",
"build": "tsc",
"postinstall": "tsc",
"postbuild": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
"npm:publish": "npm run build && cd dist && npm publish",
"npm:publish:next": "npm run build && cd dist && npm publish --tag next",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src --ext .ts"
},
"keywords": [
"nestjs",
"keycloak",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/ferrerojosh/nest-keycloak-connect"
},
"bugs": "https://github.com/ferrerojosh/nest-keycloak-connect/issues",
"peerDependencies": {
"@nestjs/common": "^8.1.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"optionalDependencies": {
"@nestjs/graphql": "^9.1.1"
},
"dependencies": {
"keycloak-connect": "^12.0.2"
},
"devDependencies": {
"@nestjs/common": "^8.1.1",
"@nestjs/core": "^8.1.1",
"@nestjs/graphql": "^9.1.1",
"@types/express": "4.16.1",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"cpr": "^3.0.1",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.2",
"rxjs": "^7.5.6",
"ts-node": "^8.6.2",
"typescript": "^4.2.4"
}
}