-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.07 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
{
"name": "@dapp/hardhat",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"test": "hardhat test",
"test-local": "hardhat test --network hardhat",
"accounts": "hardhat accounts",
"devchain": "npx celo-devchain --port 8545",
"deploy": "hardhat deploy",
"deploy-reset-watch": "hardhat deploy --reset --watch --export-all deployments/hardhat_contracts.json",
"watch": "node scripts/watch.js",
"fork-mainnet": "ganache --fork.url https://forno.celo.org --wallet.mnemonic 'concert load couple harbor equip island argue ramp clarify fence smart topic' --wallet.accountKeysPath './account_keys.json' --gasPrice 875000000"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@terminal-fi/celo-devchain": "^4.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@typechain/web3-v1": "^6.0.1",
"@types/mocha": "^9.1.0",
"bip39": "^3.0.4",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"hardhat-celo": "^0.0.3",
"hardhat-deploy": "^0.11.19",
"hardhat-gas-reporter": "^1.0.8",
"node-watch": "^0.7.3",
"solidity-coverage": "^0.7.21",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@openzeppelin/contracts": "^4.8.1",
"@redstone-finance/evm-connector": "^0.0.15",
"ganache": "^7.5.0",
"source-map-support": "^0.5.21",
"typescript": "^4.8.4",
"web3": "^1.8.0",
"web3-core": "^1.8.0",
"web3-eth-contract": "^1.8.0"
}
}