forked from Proof-Of-Humanity/proof-of-humanity-v2-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.01 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
{
"name": "cross-chain-proof-of-humanity",
"version": "1.0.0",
"description": "Cross-chain version of ProofOfHumanity",
"author": "",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"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-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",
"play": "env-cmd cross-var hardhat run scripts/play.ts --network $NETWORK --show-stack-traces",
"test": "hardhat test",
"size": "hardhat size-contracts"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cross-var": "^1.1.0",
"dotenv": "^16.0.0",
"env-cmd": "^10.1.0",
"mocha": "^9.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.7.20",
"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": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^2.3.1",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^9.0.0",
"ethers": "^6.7.1",
"hardhat": "^2.18.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.42",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^1.0.8",
"typechain": "^8.3.1"
}
}