forked from axelarnetwork/evm-cosmos-relayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "evm-cosmos-relayer",
"version": "1.0.0",
"description": "",
"main": "dist/src/start.js",
"scripts": {
"lint": "eslint .",
"build": "rm -rf dist && tsc",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec NODE_ENV=development ts-node src/start.ts",
"start:prod": "NODE_ENV=production node dist/src/start.js",
"start": "node dist/src/start.js",
"test": "jest",
"postinstall": "typechain --target ethers-v5 --out-dir src/types/contracts/ src/abi/*.json"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "^5.10.0",
"@axelar-network/axelarjs-sdk": "^0.16.2",
"@hapi/hapi": "^21.1.0",
"@hapi/inert": "^7.0.0",
"@hapi/vision": "^7.0.0",
"@prisma/client": "4.8.1",
"@reactivex/rxjs": "^6.6.7",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hapi-swagger": "^15.0.0",
"isomorphic-ws": "^5.0.0",
"joi": "^17.7.0",
"node-cron": "^3.0.3",
"node-fetch": "2.x",
"pm2": "^5.2.2",
"reconnecting-websocket": "^4.4.0",
"rxjs": "^7.8.0",
"utf-8-validate": "^6.0.0",
"winston": "^3.8.2",
"ws": "^8.12.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@typechain/ethers-v5": "^10.2.0",
"@types/hapi__inert": "^5.2.4",
"@types/hapi__joi": "^17.1.9",
"@types/hapi__vision": "^5.5.4",
"@types/jest": "^29.2.4",
"@types/node-cron": "^3",
"@types/node-fetch": "2.x",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"prisma": "^4.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.2",
"typechain": "^8.1.1",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}