-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 2.43 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
64
65
66
67
68
{
"name": "connext-integration",
"version": "1.0.0",
"description": "Connext Integration Source and Target Contracts",
"main": "index.js",
"repository": "https://github.com/connext/connext-integration.git",
"author": "Connext",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"test": "yarn forge:test",
"hardhat:test": "hardhat test",
"forge": "forge",
"forge:install": "forge install",
"forge:build": "forge build --via-ir",
"forge:test": "forge test --via-ir",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "forge fmt --check && yarn solhint \"{script,src,test}/**/*.sol\"",
"prettier:check": "prettier --check './contracts/**/*.sol' && prettier --check './contracts_forge/**/*.sol'",
"prettier:write": "prettier --write './contracts/**/*.sol' && prettier --write './contracts_forge/**/*.sol'",
"hardhat": "hardhat",
"export": "hardhat export --export-all ./deployments.json",
"clean": "rimraf cache out",
"cli:run": "ts-node test/cli.ts"
},
"devDependencies": {
"@0xgafu/common-abi": "^1.0.3",
"@connext/utils": "^7.3.17",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-foundry": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=12.0.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"ethers-eip712": "^0.2.0",
"hardhat": "^2.12.6",
"hardhat-deploy": "^0.11.23",
"hardhat-deploy-ethers": "^0.3.0-beta.11",
"hardhat-gas-reporter": "^1.0.8",
"rimraf": "^4.4.0",
"solidity-coverage": "^0.8.2",
"ts-node": ">=8.0.0",
"typechain": "^8.1.1",
"typescript": ">=4.5.0"
},
"dependencies": {
"@connext/interfaces": "^2.0.3",
"@mean-finance/dca-v2-core": "^3.2.0",
"@openzeppelin/contracts": "^4.8.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3"
},
"packageManager": "[email protected]"
}