-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@amsame/kinde-auth-nestjs",
"version": "1.3.4",
"description": "Kinde Auth module for NestJS framework",
"author": {
"name": "Amine Yagoub",
"email": "hello@amsame.tech"
},
"maintainers": [
{}
],
"repository": {
"type": "git",
"url": "https://github.com/amsametech/kinde-auth-nestjs"
},
"bugs": {
"url": "https://github.com/amsametech/kinde-auth-nestjs/issues"
},
"private": false,
"keywords": [
"kinde-oss",
"nestjs",
"kinde-auth-nestjs"
],
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"type-check": "tsc --pretty --noEmit",
"prebuild": "rimraf dist",
"build": "tsc && npm run build:index",
"build:index": "rimraf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier src/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint --ext .ts src/**/*.ts --fix",
"prepublishOnly": "npm run format && npm run build",
"postversion": "git push && git push --tags",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"axios": "^1.7.4",
"cookie": "^0.7.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"reflect-metadata": "^0.2.2",
"tslib": "^2.6.3"
},
"peerDependencies": {
"@nestjs/common": ">=9.0.0",
"@nestjs/core": ">=9.0.0",
"@nestjs/graphql": ">=9.0.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/graphql": "^12.2.0",
"@nestjs/testing": "^10.2.8",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.16.0"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*": [
"npm run format --uncommitted",
"npm run lint --uncommitted"
]
}
}