-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
30 lines (30 loc) · 1019 Bytes
/
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
{
"name": "deus-synchronizer",
"scripts": {
"lint": "solhint -f table contracts/**/*.sol",
"compile": "npx hardhat compile",
"conduct:fantom": "npx hardhat run ./scripts/helpers/conduct_SP500.js --network fantom",
"deploy:rinkeby": "npx hardhat run ./scripts/deploy-rinkeby.js --network rinkeby",
"deploy:fantom": "npx hardhat run ./scripts/deploy-fantom.js --network fantom"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-truffle5": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"dotenv": "^14.1.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.1",
"hardhat": "^2.3.3",
"hardhat-contract-sizer": "^2.3.1",
"hardhat-deploy": "^0.9.24",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
}
}