-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.2 KB
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
{
"name": "checkdot-insurance-protocol",
"version": "1.0.0",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "npx prettier --write ./contracts",
"build": "truffle build",
"run-server": "npx hardhat node --port 7545",
"deploy": "npx hardhat run --network bsc scripts/deploy-covers.js",
"compile": "npx hardhat compile",
"verifyCovers": "truffle run verify CheckDotInsuranceCovers --network bsc",
"verifyCoversProxy": "truffle run verify UpgradableCheckDotInsuranceCovers --network bsc",
"verifyProducts": "truffle run verify CheckDotInsuranceProducts --network bsc",
"verifyProductsProxy": "truffle run verify UpgradableCheckDotInsuranceProducts --network bsc",
"verifyCalculator": "truffle run verify CheckDotInsuranceCalculator --network bsc",
"verifyCalculatorProxy": "truffle run verify UpgradableCheckDotInsuranceCalculator --network bsc",
"verifyExample": "npx hardhat verify --network polygon 0xa8cC7370C641eAcFA4c60e0B8B7eBfB06da55DfC \"0x961a14bEaBd590229B1c68A21d7068c8233C8542\"",
"deployCovers": "truffle migrate -f 11 --to 11",
"deployCoversProxy": "truffle migrate -f 1 --to 1",
"upgradeCoversProxy": "truffle migrate -f 21 --to 21"
},
"author": "CheckDot Team",
"license": "MIT",
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.18.1",
"@openzeppelin/test-helpers": "^0.5.11",
"@openzeppelin/truffle-upgrades": "^1.15.1",
"@truffle/hdwallet-provider": "^1.3.0",
"solidity-coverage": "^0.7.17",
"truffle": "^5.4.10",
"truffle-assertions": "^0.9.2",
"truffle-contract": "^4.0.31",
"truffle-plugin-verify": "^0.5.16",
"web3": "^4.4.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-web3": "web3@^1.0.0-beta.36",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.26",
"prettier": "2.4.1"
}
}