-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 3 KB
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
{
"name": "@streamr-contracts/chat-contracts",
"version": "2.4.0",
"description": "Smart contracts for thechat.eth",
"author": "Streamr Network AG <contact@streamr.network>",
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"private": false,
"files": [
"contracts",
".openzeppelin"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "hardhat compile",
"clean": "rm -rf artifacts cache coverage typechain deployments .openzeppelin/unknown-31337.json",
"test": "hardhat test",
"coverage": "hardhat coverage",
"lint": "solhint contracts/**/*.sol",
"deployDelegatedAccessRegistry": "hardhat run --network localsidechain scripts/1_deployDelegatedAccessRegistry.ts",
"deployDelegatedAccessRegistryProd": "hardhat run --network polygon scripts/1_deployDelegatedAccessRegistry.ts",
"deployJoinPolicyRegistry": "hardhat run --network dev1 scripts/2_deployJoinPolicyRegistry.ts",
"deployJoinPolicyRegistryProd": "source ./.env && hardhat run --network polygon scripts/2_deployJoinPolicyRegistry.ts",
"deployTokenGateFactories": "hardhat run --network dev1 scripts/3_deployTokenGateFactories.ts",
"deployTokenGateFactoriesProd": "source ./.env && hardhat run --network polygon scripts/3_deployTokenGateFactories.ts",
"verifyPolygonscan": "hardhat verify [DEPLOYED_CONTRACT_ADDRESS] --network polygon"
},
"dependencies": {
"@chainlink/contracts": "0.3.1",
"@opengsn/contracts": "2.2.6",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable-4.4.2": "npm:@openzeppelin/contracts-upgradeable@4.4.2"
},
"devDependencies": {
"@ethersproject/bignumber": "5.5.0",
"@ethersproject/contracts": "5.5.0",
"@ethersproject/experimental": "5.5.0",
"@ethersproject/providers": "5.5.2",
"@ethersproject/wallet": "5.5.0",
"@metamask/eth-sig-util": "4.0.0",
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@opengsn/provider": "2.2.6",
"@openzeppelin/hardhat-upgrades": "1.20.0",
"@typechain/ethers-v5": "6.0.5",
"@types/debug": "4.1.7",
"caller-path": "2.0.0",
"debug": "4.3.3",
"eth-crypto": "^2.3.0",
"eth-ens-namehash": "2.0.8",
"ethereum-waffle": "3.4.0",
"ethers": "5.5.3",
"event-stream": "4.0.1",
"hardhat": "2.12.2",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.7.11",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-erc1820": "0.1.0",
"hardhat-typechain": "0.3.5",
"is-directory": "0.3.1",
"json-parse-better-errors": "^1.0.0",
"solc": "0.8.6",
"solhint": "3.3.7",
"solidity-coverage": "0.8.2",
"ts-generator": "0.1.1",
"typechain": "4.0.3",
"web3-providers-http": "1.8.0"
}
}