-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
78 lines (78 loc) · 3.2 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
{
"name": "orbiter-x",
"scripts": {
"deploy:OrbiterRouterV4": "npx hardhat run ./scripts/OrbiterRouterV4.ts",
"deploy:OBSource": "npx hardhat run ./scripts/deployOBSource.ts",
"deploy:CrossInscriptions": "npx hardhat run ./scripts/deployCrossInscriptions.ts",
"compile": "hardhat compile",
"coverage": "env COVERAGE=true hardhat coverage",
"test": "REPORT_GAS=true hardhat test ./test/TestToken.ts ./test/OrbiterXRouter.ts --network hardhat",
"test:v3": "REPORT_GAS=true hardhat test ./test/TestToken.ts ./test/OrbiterXRouterV3.ts --network hardhat",
"lint": "npm run lint:ts && npm run lint:sol",
"lint:fix": "npm run lint:ts:fix && npm run lint:sol:fix",
"lint:ts": "eslint --ext .ts,.js ./",
"lint:ts:fix": "eslint --ext .ts,.js ./ --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"slither": "npm run clean && slither . --detect reentrancy-eth,reentrancy-no-eth,reentrancy-unlimited-gas,arbitrary-send,unprotected-upgrade,uninitialized-storage,controlled-delegatecall,delegatecall-loop,msg-value-loop",
"slither:all": "npx slither .",
"sizes": "yarn run hardhat size-contracts",
"clean": "hardhat clean && rimraf build contracts/build",
"prepare": "husky install"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.4.1",
"@matterlabs/hardhat-zksync-verify": "^0.2.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/lodash": "^4.14.184",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "4.3.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.7.4",
"zksync-web3": "0.14.3"
},
"dependencies": {
"@ethereumjs/rlp": "^4.0.1",
"@ethereumjs/util": "^8.1.0",
"@nomicfoundation/hardhat-verify": "^1.0.3",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@openzeppelin/contracts": "^4.8.1",
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-etherscan": "^1.0.1",
"rimraf": "^3.0.2",
"rlp": "^3.0.0",
"solidity-docgen": "^0.6.0-beta.34",
"zksync-ethers": "^5.0.0"
}
}