-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
75 lines (75 loc) · 3.45 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
{
"name": "cross-chain-proof-of-humanity",
"version": "1.0.0",
"description": "Cross-chain version of ProofOfHumanity",
"author": "",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy-poh": "env-cmd cross-var hardhat run scripts/deploy/poh.ts --network $NETWORK",
"deploy-extended": "env-cmd cross-var hardhat run scripts/deploy/extended.ts --network $NETWORK",
"deploy-fork-manually": "env-cmd cross-var hardhat run scripts/deploy/fork-manually.ts --network $NETWORK",
"deploy-ccpoh": "env-cmd cross-var hardhat run scripts/deploy/ccpoh.ts --network $NETWORK",
"deploy-gateway": "env-cmd cross-var hardhat run scripts/deploy/gateway.ts --network $NETWORK",
"deploy-pohlegacy": "env-cmd cross-var hardhat run scripts/deploy/pohlegacy.ts --network $NETWORK",
"deploy-proxy-token": "env-cmd cross-var hardhat run scripts/deploy/proxy-token.ts --network $NETWORK",
"verify-poh": "hardhat run scripts/verify/poh.ts --network",
"verify-ccpoh": "hardhat run scripts/verify/ccpoh.ts --network",
"verify-gateway": "hardhat run scripts/verify/gateway.ts --network",
"verify-messenger": "hardhat run scripts/verify/messenger.ts --network",
"verify-proxy-token": "hardhat run scripts/verify/proxy-token.ts --network",
"verify-fork": "hardhat run scripts/verify/fork.ts --network",
"deploy-production-pohs": "yarn deploy-extended mainnet && yarn deploy-poh gnosis",
"verify-production-pohs": "yarn verify-poh mainnet && yarn verify-poh gnosis",
"deploy-production-ccpohs": "yarn deploy-ccpoh mainnet && yarn deploy-ccpoh gnosis",
"verify-production-ccpohs": "yarn verify-ccpoh mainnet && yarn verify-ccpoh gnosis",
"deploy-production-gateways": "yarn deploy-gateway mainnet && yarn deploy-gateway gnosis",
"verify-production-gateways": "yarn verify-gateway mainnet && yarn verify-gateway gnosis"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/ignition-core": "^0.15.5",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "20",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cross-var": "^1.1.0",
"dotenv": "^16.0.0",
"env-cmd": "^10.1.0",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^9.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.12",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@kleros/erc-792": "^8.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.0.0",
"ethers": "^6.7.1",
"hardhat": "^2.18.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.1",
"typechain": "^8.3.1"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"volta": {
"node": "20.16.0",
"yarn": "1.22.22"
}
}