52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "spy_relay",
|
|
"version": "1.0.0",
|
|
"description": "Spy listener and relayer",
|
|
"main": "spy_relay.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"spy_relay": "node lib/main.js",
|
|
"tilt_listener": "SPY_RELAY_CONFIG=.env.tilt.listener node lib/main.js --listen_only",
|
|
"tilt_relayer": "SPY_RELAY_CONFIG=.env.tilt.relayer node lib/main.js --relay_only",
|
|
"tilt_wallet_monitor": "SPY_RELAY_CONFIG=.env.tilt.wallet-monitor node lib/main.js --wallet_monitor_only",
|
|
"listen_only": "node lib/main.js --listen_only",
|
|
"relay_only": "node lib/main.js --relay_only",
|
|
"wallet_monitor_only": "node lib/main.js --wallet_monitor_only",
|
|
"test": "jest --config jestconfig.json --verbose"
|
|
},
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/long": "^4.0.1",
|
|
"@types/node": "^16.6.1",
|
|
"axios": "^0.24.0",
|
|
"esm": "^3.2.25",
|
|
"ethers": "5.4.4",
|
|
"jest": "^27.3.1",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.0.7",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"dependencies": {
|
|
"@celo-tools/celo-ethers-wrapper": "^0.1.0",
|
|
"@certusone/wormhole-sdk": "^0.3.8",
|
|
"@certusone/wormhole-spydk": "^0.0.1",
|
|
"@solana/spl-token": "^0.1.8",
|
|
"@solana/web3.js": "^1.24.0",
|
|
"@terra-money/wallet-provider": "^3.8.0",
|
|
"@types/express": "^4.17.13",
|
|
"async-mutex": "^0.3.2",
|
|
"body-parser": "^1.19.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^10.0.0",
|
|
"express": "^4.17.1",
|
|
"prom-client": "^14.0.1",
|
|
"redis": "^4.0.1",
|
|
"winston": "^3.3.3"
|
|
}
|
|
}
|