-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·35 lines (35 loc) · 1.62 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
{
"name": "chainlink-hack",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test ./test/test-local/*",
"test:Something": "truffle test ./test/test-local/Something.test.js --network test",
"script:WatchSignals": "truffle exec ./scripts/scripts-kovan/WatchSignalsLuxuryWatchPriceOracle.script.js --network kovan",
"script:WatchNFTFactory": "truffle exec ./scripts/scripts-kovan/WatchNFTFactory.script.js --network kovan",
"script:WatchCDP-borrow": "truffle exec ./scripts/scripts-kovan/WatchCDP-borrow.script.js --network kovan",
"script:WatchCDP-repay": "truffle exec ./scripts/scripts-kovan/WatchCDP-repay.script.js --network kovan",
"script:PriceConsumerV3": "truffle exec ./scripts/scripts-kovan/PriceConsumerV3.script.js --network kovan",
"script-arbitrum:PriceConsumerV3": "truffle exec ./scripts/scripts-arbitrum/PriceConsumerV3.script.js --network arbitrum",
"compile:local": "truffle compile --reset --network local",
"compile:kovan": "truffle compile --reset --network kovan",
"migrate:local": "truffle migrate --reset --network local",
"migrate:kovan": "truffle migrate --reset --network kovan",
"migrate:arbitrum": "truffle migrate --reset --network arbitrum"
},
"author": "masaun",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@truffle/hdwallet-provider": "^1.2.0",
"dotenv": "^8.2.0",
"eth-block-tracker": "^4.4.3",
"@chainlink/contracts": "^0.1.6",
"arb-ethers-web3-bridge": "0.7.3"
},
"devDependencies": {}
}