-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "chain-shuttle",
"version": "0.0.1",
"description": "A shuttle to batch cross-chain transfers and lower fees",
"main": "truffle-config.js",
"scripts": {
"postinstall": "husky install",
"compile": "truffle compile && coffee -o test -c test",
"develop": "./env/bootstrap.sh -d -e geth -a geth -b",
"migrate": "yarn migrate:eth && yarn migrate:avax",
"migrate:avash": "truffle migrate --network avax_avash --reset",
"migrate:avax": "truffle migrate --network avax_geth --reset",
"migrate:eth": "truffle migrate --network eth --reset",
"test": "yarn compile && ./test/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ImpermanentStuff/chain-shuttle.git"
},
"keywords": [
"avalanche",
"ethereum",
"bridge",
"solidity"
],
"author": "ImpermanentStuff",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ImpermanentStuff/chain-shuttle/issues"
},
"homepage": "https://github.com/ImpermanentStuff/chain-shuttle#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.0.0",
"web3": "^1.3.4"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@truffle/contract": "^4.3.13",
"@truffle/hdwallet-provider": "1.2.3",
"avalanche": "^3.2.1",
"coffeescript": "^2.5.1",
"cz-conventional-changelog": "^3.3.0",
"ganache-cli": "^6.12.2",
"husky": "^5.1.3",
"should": "^13.2.3",
"truffle": "^5.2.4",
"truffle-assertions": "^0.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}