-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 3.85 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
{
"name": "mymultisig-contract",
"version": "0.1.1",
"description": "Multi-Signatures Solidity Smart Contract for mymultisig.app",
"main": "index.js",
"files": [
"constants/*.ts",
"abi/*.json",
"types/*.ts",
"contractsAddressDeployed.json",
"LICENSE",
"README.md"
],
"scripts": {
"test": "bash ./test.sh",
"build": "hardhat run scripts/buildAbi.ts && hardhat run scripts/buildTypes.ts",
"compile": "hardhat compile",
"coverage": "hardhat coverage --config hardhat.config.coverage.ts --testfiles test/MyMultiSig.test.ts && hardhat coverage --config hardhat.config.coverage.ts --testfiles test/MyMultiSigFromFactory.test.ts",
"coverage-foundry": "forge coverage --report lcov && genhtml lcov.info -o report --branch-coverage && open report/index.html",
"flatten": "hardhat flatten > Flat.sol && npx hardhat flatten contracts/MyMultiSig.sol > FlatMyMultiSig.sol",
"prettier-test": "prettier --write test/",
"prettier-contracts": "prettier --write contracts/",
"prettier-foundry-contracts": "prettier --write contracts/test/",
"deploy-test": "npx hardhat run scripts/deploy.ts",
"deploy-localhost": "npx hardhat run scripts/deploy.ts --network localhost",
"deploy-ethereum": "npx hardhat run scripts/deploy.ts --network ethereum",
"deploy-ethereumFork": "npx hardhat run scripts/deploy.ts --network ethereumFork",
"deploy-goerli": "npx hardhat run scripts/deploy.ts --network goerli",
"deploy-goerliFork": "npx hardhat run scripts/deploy.ts --network goerliFork",
"deploy-bnb": "npx hardhat run scripts/deploy.ts --network bnb",
"deploy-bnbFork": "npx hardhat run scripts/deploy.ts --network bnbFork",
"deploy-bnbTestnet": "npx hardhat run scripts/deploy.ts --network bnbTestnet",
"deploy-bnbTestnetFork": "npx hardhat run scripts/deploy.ts --network bnbTestnetFork",
"deploy-polygon": "npx hardhat run scripts/deploy.ts --network polygon",
"deploy-polygonFork": "npx hardhat run scripts/deploy.ts --network polygonFork",
"deploy-mumbai": "npx hardhat run scripts/deploy.ts --network mumbai",
"deploy-mumbaiFork": "npx hardhat run scripts/deploy.ts --network mumbaiFork"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marc-aurele-besner/mymultisig-contract.git"
},
"keywords": [
"MultiSig",
"Multi-Signatures",
"Solidity",
"Smart-Contract",
"HardHat",
"Foundry",
"mymultisig"
],
"author": "Marc-Aurele Besner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marc-aurele-besner/mymultisig-contract/issues"
},
"homepage": "https://github.com/marc-aurele-besner/mymultisig-contract#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.6",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"chai": "^4.3.7",
"deployment-tool": "^0.1.5",
"dotenv": "^16.0.3",
"ethers": "5.7.2",
"ethersV6": "npm:ethers",
"foundry-test-utility": "^0.1.1",
"fs": "^0.0.1-security",
"hardhat": "^2.12.6",
"hardhat-contract-clarity": "^0.1.1",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.1.2",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3"
}
}