-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.91 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.91 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
{
"name": "open-order-contracts",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"merge-contracts": "sol-merger --export-plugin SPDXLicenseRemovePlugin \\\"./contracts/*.sol\\\" ./build && sol-merger --export-plugin SPDXLicenseRemovePlugin \\\"./contracts/dex/*.sol\\\" ./build/dex && sol-merger --export-plugin SPDXLicenseRemovePlugin \\\"./contracts/farming/*.sol\\\" ./build/farming && sol-merger --export-plugin SPDXLicenseRemovePlugin \\\"./contracts/gov/*.sol\\\" ./build/gov && sol-merger --export-plugin SPDXLicenseRemovePlugin \\\"./contracts/liquidity/*.sol\\\" ./build/liquidity && sol-merger --export-plugin SPDXLicenseRemovePlugin \\\"contracts/mocks/*.sol\\\" ./build/test",
"prettier": "prettier --write 'contracts/**/*.sol'",
"posttest": "docker stop testrpc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/test-helpers": "^0.5.15",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-periphery": "^1.1.0",
"bignumber.js": "^1.5.0",
"cloc": "^2.10.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.5.1",
"ganache-cli": "6.12.2",
"ganache-time-traveler": "^1.0.15",
"keccak256": "^1.0.3",
"lodash.template": "^4.5.0",
"merkletreejs": "^0.2.24",
"solc": "^0.7.6",
"truffle": "^5.4.7",
"truffle-contract-size": "^2.0.1"
},
"bundleDependencies": false,
"devDependencies": {
"@truffle/hdwallet-provider": "2.0.15",
"eth-gas-reporter": "^0.2.20",
"mocha-logger": "^1.0.7",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"sol-merger": "^3.1.0",
"solidity-coverage": "^0.7.16",
"truffle-plugin-stdjsonin": "github:mhrsalehi/truffle-plugin-stdjsonin",
"truffle-plugin-verify": "^0.5.18"
}
}