-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.13 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
56
57
58
59
60
61
62
63
{
"name": "@sushiswap/settlement",
"version": "0.13.1",
"license": "MIT",
"description": "Contracts that support limit orders feature for SushiSwap",
"files": [
"contracts",
"deployments"
],
"scripts": {
"solhint": "solhint 'contracts/**/*.sol'",
"build": "hardhat prepend-spdx-license && hardhat compile",
"start": "hardhat node",
"console": "hardhat console",
"test": "hardhat test",
"test:coverage": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage",
"test:gas": "REPORT_GAS=true yarn test",
"deploy:hardhat": "hardhat deploy",
"deploy:kovan": "hardhat deploy --network kovan",
"deploy:rinkeby": "hardhat deploy --network rinkeby",
"deploy:mainnet": "hardhat deploy --network mainnet",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@ethersproject/hash": "^5.0.10",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@sushiswap/sdk": "^3.0.0",
"pancakeswap-peripheral": "^1.1.0-beta.0",
"canonical-weth": "^1.4.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.0.8",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.55",
"replace-in-file": "^6.1.0",
"solhint": "^3.1.0",
"solhint-plugin-buidler": "^0.0.1",
"solhint-plugin-prettier": "^0.0.4",
"solidity-coverage": "^0.7.14"
},
"dependencies": {
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@pancakeswap-libs/pancake-swap-core": "^0.1.0",
"@solidity-parser/parser": "^0.10.1-rc.1",
"@sushiswap/core": "^1.2.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/lib": "^4.0.1-alpha",
"@truffle/hdwallet-provider": "^1.1.0",
"solidity-coverage": "^0.7.13",
"truffle": "^5.1.44",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17"
}
}