-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "@axelar-network/axelar-local-dev-cosmos",
"version": "2.3.2",
"main": "dist/index.js",
"files": [
"dist/",
"!dist/types",
"!dist/artifacts",
"docker",
"!docker/**/.*",
"!docker/**/*.log"
],
"scripts": {
"test": "jest --testMatch='**/*.spec.ts'",
"test:e2e": "jest --testMatch='**/*.e2e.ts' --runInBand --detectOpenHandles --forceExit",
"prettier": "prettier --write 'src/**/*.ts'",
"build": "run-s build:ts build:contract",
"build:ts": "rm -rf dist && tsc",
"build:contract": "hardhat clean && hardhat compile",
"start": "./scripts/clean.sh && ts-node scripts/start.ts",
"stop": "ts-node scripts/stop.ts"
},
"dependencies": {
"@axelar-network/axelar-local-dev": "^2.3.2",
"@confio/relayer": "^0.10.0",
"@cosmjs/cosmwasm-stargate": "^0.31.1",
"@cosmjs/stargate": "^0.31.1",
"@types/sinon": "^17.0.2",
"bech32": "^2.0.0",
"docker-compose": "^0.24.3",
"node-fetch": "^2.7.0",
"reconnecting-websocket": "^4.4.0",
"sinon": "^17.0.1"
},
"author": "[email protected]",
"license": "ISC",
"description": "",
"devDependencies": {
"@axelar-network/axelar-gmp-sdk-solidity": "^5.6.2",
"@types/node-fetch": "^2.6.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
},
"gitHead": "39d77bf2128077a615e6d3a5a4caf55e79f53b70"
}