-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 912 Bytes
/
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
{
"name": "@multiversx/sdk-transaction-processor",
"version": "0.1.34",
"description": "Real-time transaction processor",
"main": "lib/transaction.processor.js",
"types": "lib/transaction.processor.d.ts",
"files": [
"lib"
],
"scripts": {
"example": "npx ts-node ./main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"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/node": "^16.11.10",
"typescript": "^4.3.5"
},
"dependencies": {
"@nestjs/common": "^10.4.1",
"@nestjs/platform-express": "^10.4.1",
"@nestjs/schedule": "^4.1.0",
"axios": "^1.7.4"
}
}