-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
95 lines (95 loc) · 3.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "rubic-multi-proxy-contracts",
"version": "0.1.0",
"description": "Rubic is a cross-chain bridge aggregation protocol",
"engines": {
"node": ">= 12.18.0"
},
"repository": "github:cryptorubic/multi-proxy-rubic",
"author": "Rubic",
"license": "MIT",
"keywords": [
"ethereum",
"smart-contracts",
"template",
"cross-chain",
"hardhat",
"solidity"
],
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.17",
"@matterlabs/hardhat-zksync-verify": "^0.1.6",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@openzeppelin/contracts": "4.8.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/inquirer": "^8.2.0",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.2",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"cross-env": "^7.0.2",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"ethers": "^5.7.1",
"fs-extra": "^10.0.1",
"hardhat": "^2.9.0",
"hardhat-preprocessor": "^0.1.5",
"husky": "^8.0.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.20",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "4.8.4",
"zksync-web3": "^0.14.3"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
},
"scripts": {
"postinstall": "patch-package",
"prepare:husky": "husky install",
"lint": "eslint \"**/*.{js,ts}\" && solhint src/**/*.sol",
"lint:fix": "eslint --fix \"**/*.{js,ts}\" && solhint --fix src/**/*.sol",
"format": "prettier --check \"**/*.{ts,js,sol}\"",
"format:fix": "prettier --write \"**/*.{ts,js,sol}\"",
"compile": "make build",
"test": "make test",
"test:fix": "npm run lint:fix; npm run format:fix; npm run test",
"gas": "make snapshot",
"coverage": "make coverage",
"execute": "node ./_scripts.js run",
"deploy": "node ./_scripts.js deploy",
"abi:generate": "make clean && hardhat compile && hardhat diamondABI",
"typechain": "make clean && forge build --skip script --skip test --skip Base --skip Test && typechain --target ethers-v5 'out/**/*.json' --out-dir typechain"
},
"dependencies": {
"@arbitrum/sdk": "^3.0.0",
"@axelar-network/axelar-cgp-solidity": "git+https://github.com/axelarnetwork/axelar-cgp-solidity.git",
"@axelar-network/axelarjs-sdk": "^0.6.11-alpha.8",
"@connext/nxtp-contracts": "^0.1.31",
"@connext/nxtp-sdk": "^0.1.31",
"@connext/nxtp-utils": "^0.1.31",
"@hop-protocol/sdk": "0.0.1-beta.310",
"@uma/sdk": "^0.22.1",
"@uniswap/sdk": "^3.0.3",
"chalk": "4.1.2",
"defender-relay-client": "^1.26.0",
"hardhat-ethers": "^1.0.1",
"inquirer": "^8.2.1",
"light-spinner": "^1.0.4",
"pino": "^7.9.2",
"yarn": "^1.22.19"
}
}