-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.87 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
{
"name": "@boolnetwork/advanced-solidity-tutorials",
"version": "1.0.0",
"author": "0xAndersonZ@BoolNetwork",
"license": "MIT",
"description": "Advanced Solidity examples for developing on Bool Network.",
"scripts": {
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin' --exclude naming-convention,external-function,low-level-calls",
"lint": "yarn solhint 'contracts/**/*.sol'",
"lint:fix": "yarn solhint 'contracts/**/*.sol' --fix",
"format": "yarn prettier --write .",
"coverage": "yarn hardhat coverage",
"typechain": "yarn hardhat typechain",
"local:start": "yarn hardhat node --no-deploy --write false",
"compile": "yarn hardhat compile --network zksync_goerli",
"test": "yarn hardhat test"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.4.0",
"@matterlabs/hardhat-zksync-verify": "^0.1.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.5.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^17.0.13",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.14.4",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-deploy": "^0.11.26",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.7",
"mocha": "^10.2.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.0.0",
"typescript": "^4.9.4",
"zksync-web3": "^0.14.3"
}
}