-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
50
51
52
{
"name": "@multiversx/sdk-nestjs-common",
"version": "4.1.0",
"description": "Multiversx SDK Nestjs common package",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config=../../jest.config.json --passWithNoTests common/*",
"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",
"common"
],
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.4",
"@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-network-providers": "^2.6.0",
"nest-winston": "^1.6.2",
"uuid": "^8.3.2",
"winston": "^3.7.2"
},
"peerDependencies": {
"@multiversx/sdk-nestjs-monitoring": "^4.0.0",
"@nestjs/common": "^10.x",
"@nestjs/config": "^3.x",
"@nestjs/core": "^10.x",
"@nestjs/swagger": "^7.x"
},
"publishConfig": {
"access": "public"
}
}