forked from Proof-Of-Humanity/proof-of-humanity-v2-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.79 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
{
"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",
"test": "hardhat test",
"size": "hardhat size-contracts"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@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",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.8.4",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.11.12",
"mocha": "^9.2.0",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.5.0",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@kleros/erc-792": "^8.0.0",
"ethers": "^5.5.4"
}
}