-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.53 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.53 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
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
96
97
98
99
100
{
"name": "@routerprotocol/asset-bridge",
"description": "The Cross Chain Asset Bridge Solidity Contracts",
"version": "0.1.1",
"author": {
"name": "Shivam Agrawal",
"email": "shivam@routerprotocol.com"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/providers": "^5.4.3",
"@matterlabs/hardhat-zksync-deploy": "^1.0.1",
"@matterlabs/hardhat-zksync-upgradable": "^1.1.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@openzeppelin/hardhat-upgrades": "^2.3.1",
"@typechain/ethers-v5": "^11.1.1",
"@typechain/ethers-v6": "^0.5.0",
"@types/chai": "^4.3.6",
"@types/fs-extra": "^11.0.2",
"@types/lodash": "^4.14.199",
"@types/mocha": "^10.0.2",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"chai": "^4.3.10",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"ethers": "^6.8.0",
"fs-extra": "^11.1.1",
"hardhat": "^2.18.3",
"hardhat-contract-sizer": "^2.10.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"shelljs": "^0.8.4",
"solc": "^0.8.21",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"tronbox": "^3.4.0",
"ts-generator": "^0.1.1",
"ts-node": "^10.1.0",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"cross-chain",
"smart-contracts",
"solidity"
],
"license": "WTFPL",
"resolutions": {
"@solidity-parser/parser": "^0.13.2"
},
"scripts": {
"clean": "hardhat clean",
"commit": "git-cz",
"compile": "hardhat compile",
"compile:tron": "tronbox compile",
"compile:zksync": "hardhat compile --network zkSync",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config ./.prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:check": "prettier --check --config ./.prettierrc \"**/*.{js,json,md,sol,ts}\"",
"test": "hardhat test",
"typechain": "hardhat typechain"
},
"dependencies": {
"@matterlabs/hardhat-zksync-solc": "^1.0.3",
"@matterlabs/hardhat-zksync-verify": "^1.2.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@routerprotocol/asset-forwarder": "^1.0.3",
"@routerprotocol/evm-gateway-contracts": "^1.1.13",
"@routerprotocol/router-chain-sdk-ts": "^0.8.67",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.1",
"zksync-ethers": "^6.0.0"
}
}