-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 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
{
"name": "@multiversx/sdk-transaction-processor",
"version": "0.1.29",
"description": "Real-time transaction processor",
"main": "lib/main.js",
"types": "lib/transaction.processor.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "npx ts-node ./src/main.ts",
"example-build": "node ./lib/main.js",
"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-transaction-processor.git"
},
"keywords": [
"multiversx",
"transaction",
"processor"
],
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/cron": "^2.0.0",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"eslint": "^8.9.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@multiversx/sdk-core": "^11.3.0",
"@nestjs/common": "^9.3.9",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.3.9",
"@nestjs/platform-express": "^9.3.9",
"@nestjs/schedule": "2.2.0",
"axios": "^0.21.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0"
}
}