-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.54 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
{
"name": "starkex-peripheral",
"scripts": {
"build": "SKIP_LOAD=true npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"deploy-proxy-deposit:ROPSTEN": "npx hardhat --network ropsten deploy-proxy-deposit",
"deploy-proxy-deposit:GOERLI": "npx hardhat --network goerli deploy-proxy-deposit",
"deploy-proxy-deposit:MAINNET": "npx hardhat --network mainnet deploy-proxy-deposit",
"verify-contract-proxy-deposit:ROPSTEN": "npx hardhat verify --network ropsten",
"verify-contract-proxy-deposit:GOERLI": "npx hardhat verify --network goerli",
"verify-contract-proxy-deposit:MAINNET": "npx hardhat verify --network mainnet"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@openzeppelin/contracts": "4.4.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"ethers": "^5.1.4",
"hardhat": "^2.6.0",
"lodash": "^4.17.21",
"solidity-coverage": "^0.7.17",
"web3": "1.6.1"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.1",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.2.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
}
}