-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
32 lines (32 loc) · 1.32 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
{
"name": "open-ocean-exchange",
"description": "OpenOceanExchange",
"license": "ISC",
"dependencies": {
"@eth-optimism/plugins": "^1.0.0-alpha.3",
"@openzeppelin/contracts": "^3.1.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.6",
"chai": "^4.2.0",
"ethers": "^5.3.0",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.0",
"solc": "^0.6.12",
"truffle": "^5.1.37",
"truffle-flattener": "^1.4.4",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"scripts": {
"compile": "truffle compile",
"flattern-proxy-admin": "truffle-flattener ./contracts/OpenOceanExchangeProxyAdmin.sol > OpenOceanExchangeProxyAdmin.full.sol",
"flattern-proxy": "truffle-flattener ./contracts/OpenOceanExchangeProxy.sol > OpenOceanExchangeProxy.full.sol",
"flattern-exchange": "truffle-flattener ./contracts/OpenOceanExchange.sol > OpenOceanExchange.full.sol",
"flattern": "npm run flattern-proxy-admin && npm run flattern-proxy && npm run flattern-exchange"
}
}