-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.04 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
55
{
"name": "depx-contract",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "rm contract-addresses-local* && npx hardhat clean",
"localnode": "yarn hardhat node --hostname 0.0.0.0",
"local": "yarn hardhat run scripts/deploy.js --network localhost",
"deploy": "yarn hardhat clean && time yarn hardhat run scripts/deploy.js --network ",
"test": "yarn hardhat clean && yarn hardhat test test/market/{long,trader}/*.js",
"runamo": "npx hardhat run scripts/test/amo.js --network ",
"runamc": "npx hardhat run scripts/test/amc.js --network ",
"runamq": "npx hardhat run scripts/test/amliq.js --network ",
"price": "npx hardhat run scripts/test/setPrice.js --network "
},
"devDependencies": {
"@ethereum-waffle/provider": "^4.0.5",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"chai-bignumber": "^3.1.0",
"chai-bn": "^0.3.1",
"ethereum-waffle": "^4.0.9",
"ethers": "^5.7.2",
"hardhat": "^2.12.6",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
"typechain": "^8.1.1"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.8.1",
"@tenderly/hardhat-tenderly": "^1.6.1",
"@uniswap/v3-periphery": "^1.4.3",
"csv-parse": "^5.3.3",
"dotenv": "^16.0.3",
"eth-create2-calculator": "^1.1.5",
"ethereum-input-data-decoder": "^0.4.2",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-etherscan": "^1.0.1",
"hardhat-solidity-create2-deployer": "^1.0.2",
"node-binance-api": "^0.13.1",
"solidity-create2-deployer": "^0.4.0"
}
}