-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 3.01 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@xlabs-xyz/wallet-monitor",
"version": "0.2.27",
"description": "A set of utilities to monitor blockchain wallets and react to them",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build-docker-image": "docker build -t wallet-manager-service:latest .",
"start-service": "node lib/grpc/service.js",
"build-grpc": "grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./src/grpc/out/ --ts_proto_opt=outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=false,esModuleInterop=true --proto_path=./src/grpc/proto/ src/grpc/proto/wallet-manager-grpc-service.proto",
"build": "npm run build-grpc && tsc",
"watch": "tsc -w",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"prettier": "prettier --write $(git diff main --name-only --diff-filter u | grep '.ts$' | xargs)",
"test": "jest --silent=false",
"start-ganache": "npx ganache -i 5777 --wallet.accounts=0xf9fdbcbcdb4c7c72642be9fe7c09ad5869a961a8ae3c3374841cb6ead5fd34b1,200000000000000000 --wallet.accounts=0xe94000d730b9655850afc8e39facb7058678f11e765075d4806d27ed619f258c,10000000000000000000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xlabs/wallet-monitor.git"
},
"keywords": [
"blockchain",
"wallet",
"wallet-balance",
"monitoring",
"wallet-monitoring",
"wallet scraping",
"wallet-scraping",
"wallet exporter",
"wallet-exporter",
"wallet monitoring",
"wallet balance exporter",
"wallet balance export",
"wallet balance scrape",
"wallet balance monitor",
"wallet balance monitoring"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/xlabs/wallet-monitor/issues"
},
"homepage": "https://github.com/xlabs/wallet-monitor#readme",
"dependencies": {
"@cosmjs/proto-signing": "^0.31.1",
"@cosmjs/stargate": "^0.31.3",
"@ethersproject/bignumber": "^5.7.0",
"@mysten/sui.js": "^0.32.2",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.78.0",
"axios": "^1.5.1",
"bluebird": "^3.7.2",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"elliptic": "^6.5.4",
"ethers": "^5.7.0",
"koa": "^2.14.1",
"koa-router": "^12.0.0",
"nice-grpc": "^2.1.4",
"prom-client": "^14.2.0",
"winston": "^3.8.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bluebird": "^3.5.38",
"@types/elliptic": "^6.4.17",
"@types/jest": "^29.5.1",
"@types/koa": "^2.13.6",
"@types/koa-router": "^7.4.4",
"@types/node": "^18.15.7",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ganache": "^7.8.0",
"ganache-cli": "^6.12.2",
"google-protobuf": "^3.21.2",
"grpc-tools": "^1.12.4",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-proto": "^1.147.3",
"typescript": "^5.0.2"
}
}