-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.49 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
{
"name": "our-contracts",
"version": "1.0.0",
"description": "Smart contracts repository for Chainlink hackathon",
"scripts": {
"compile": "truffle compile",
"migrate:dev": "truffle migrate --reset --network development",
"migrate:kovan": "truffle migrate --reset --network kovan",
"verify": "truffle run verify Comptroller PrivatePools PublicPools DonationPools --network kovan --license MIT",
"ganache": "ganache-cli -d -v -f https://eth-kovan.alchemyapi.io/v2/HizICpPzb2rrsMUGqr0TwPgoTqR4t0nA",
"test:revert": "truffle test test/2_reverts.js",
"test:fork": "concurrently \"yarn ganache>/dev/null\" \"truffle test test/1_trans.js --debug --network fork && yarn kill\"",
"kill": "kill $(lsof -t -i:8545)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chainGers-2021/our-contracts.git"
},
"author": "chainGers-2021",
"license": "MIT",
"bugs": {
"url": "https://github.com/chainGers-2021/our-contracts/issues"
},
"homepage": "https://github.com/chainGers-2021/our-contracts#readme",
"dependencies": {
"@aave/protocol-v2": "^1.0.1",
"@chainlink/contracts": "^0.1.6",
"@openzeppelin/contracts": "^3.4.1",
"@truffle/hdwallet-provider": "^1.2.6",
"concurrently": "^6.0.0",
"dotenv": "^8.2.0",
"erc1155-nft-token-and-holder": "https://github.com/chainGers-2021/ERC1155-holder-distributor.git",
"ganache-cli": "^6.12.2",
"truffle": "^5.3.0",
"truffle-assertions": "^0.9.2",
"web3": "^1.3.4"
}
}