-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
{
"name": "@multiversx/sdk-nestjs-auth",
"version": "4.1.0",
"description": "Multiversx SDK Nestjs auth package",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config=../../jest.config.json --passWithNoTests auth/*",
"build": "tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiversx/mx-sdk-nestjs.git"
},
"keywords": [
"multiversx",
"nestjs",
"auth"
],
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.9.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@multiversx/sdk-core": "^13.4.1",
"@multiversx/sdk-native-auth-server": "^1.0.19",
"@multiversx/sdk-wallet": "^4.5.0",
"jsonwebtoken": "^9.0.0"
},
"peerDependencies": {
"@multiversx/sdk-nestjs-cache": "^4.0.0",
"@multiversx/sdk-nestjs-common": "^4.0.0",
"@multiversx/sdk-nestjs-monitoring": "^4.0.0",
"@nestjs/common": "^10.x"
},
"publishConfig": {
"access": "public"
}
}