-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.69 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": "meet-with-wallet-contracts",
"license": "GNU GPLv3",
"scripts": {
"coverage": "env COVERAGE=true hardhat coverage",
"clean": "hardhat clean",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true npm run test",
"deploy": "hardhat run --network",
"verify:registar": "hardhat verify --constructor-args scripts/argumentsRegistar.js --network",
"verify:domain": "hardhat verify --constructor-args scripts/argumentsDomain.js --network",
"blockscout:verify": "hardhat blockscout-verify",
"lint": "solhint 'contracts/**/*.sol'",
"lint:ci": "solhint -f json 'contracts/**/*.sol' > solhint.json",
"prettier": "prettier --write 'contracts/**/*.sol'",
"postinstall": "patch-package",
"docs": "solidity-docgen --solc-module solc-0.8",
"slither": "yarn run clean && slither . --detect reentrancy-eth,reentrancy-no-eth,reentrancy-unlimited-gas"
},
"homepage": "https://meetwithwallet.xyz",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"meet-with-wallet",
"mww"
],
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@ericxstone/hardhat-blockscout-verify": "^1.0.0",
"@faker-js/faker": "^7.5.0",
"@matterlabs/hardhat-zksync-deploy": "^0.6.1",
"@matterlabs/hardhat-zksync-solc": "^0.3.14",
"@matterlabs/hardhat-zksync-verify": "^0.1.1",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.4",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.1",
"hardhat": "^2.11.1",
"hardhat-gas-reporter": "^1.0.9",
"metis-sourcecode-verify": "^0.0.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solc-0.8": "npm:[email protected]",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "0.5.17",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.3",
"web3": "^1.8.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3"
}
}