-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.68 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.68 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
{
"name": "helios-ethereum-bridge-contract",
"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 amoy scripts/deploy.js",
"deploy-erc20": "npx hardhat run --network amoy scripts/deploy.js",
"compile": "npx hardhat compile",
"verify": "npx hardhat verify --network mainnet ADDRESS",
"deploySpecific": "truffle migrate -f 11 --to 11"
},
"author": "Helios 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/buidler": "^1.4.8",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.1.0",
"@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",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.26",
"prettier": "2.4.1"
}
}