-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "fintegrate-auth",
"version": "1.0.132",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest"
},
"keywords": [
"@fintegrate"
],
"author": "TYRM",
"license": "ISC",
"private": false,
"description": "The Auth package provides tools and mechanisms for managing and authenticating user identity",
"devDependencies": {
"@nestjs/testing": "^10.3.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/passport-jwt": "^4.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/passport": "^10.0.3",
"jwks-rsa": "^3.1.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1"
},
"dependencies": {
"@nestjs/axios": "^3.0.2",
"@nestjs/config": "^3.2.3",
"axios": "^1.7.2",
"dotenv": "^16.4.5"
}
}