forked from OpenQDev/OpenQ-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 3.93 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": "OpenQ-Contracts",
"license": "MIT",
"description": "OpenQ Contracts",
"version": "1.0.0",
"private": true,
"scripts": {
"ethnode": "hardhat node",
"hardhat:clean": "hardhat clean",
"hardhat:compile": "hardhat compile",
"console:local": "hardhat console --network localhost",
"accounts": "hardhat accounts --network localhost",
"test": "hardhat test",
"deploy-single:localhost": "hardhat run --network localhost deploy/eventTesters/BountyCreated.js",
"invoicecomplete:atomic:localhost": "hardhat run --network localhost deploy/eventTesters/InvoiceCompleteSet_atomic.js",
"invoicecomplete:tiered:localhost": "hardhat run --network localhost deploy/eventTesters/InvoiceCompleteSet_tiered.js",
"supportingdocumentscomplete:atomic:localhost": "hardhat run --network localhost deploy/eventTesters/SupportingDocumentsCompleteSet_atomic.js",
"supportingdocumentscomplete:tiered:localhost": "hardhat run --network localhost deploy/eventTesters/SupportingDocumentsCompleteSet_tiered.js",
"deploy:localhost": "yarn deploy-contracts:localhost && yarn configure-whitelist:localhost && yarn deploy-bounties:localhost && yarn fund-bounties:localhost",
"deploy:docker": "yarn deploy-contracts:docker && yarn configure-whitelist:docker && yarn deploy-bounties:docker && yarn fund-bounties:docker",
"deploy:polygon": "yarn deploy-contracts:polygon && yarn configure-whitelist:polygon && yarn verify-contracts:polygon",
"deploy-superfluid:docker": "hardhat run --network docker deploy/deploy_superfluid.js",
"deploy-superfluid:localhost": "hardhat run --network localhost deploy/deploy_superfluid.js",
"deploy-contracts:docker": "hardhat run --network docker deploy/deploy_contracts.js",
"configure-whitelist:docker": "hardhat run --network docker deploy/configure-whitelist.js",
"deploy-bounties:docker": "hardhat run --network docker deploy/deploy_bounties.js",
"fund-bounties:docker": "hardhat run --network docker deploy/fund_bounties.js",
"deploy-contracts:polygon": "hardhat run --network polygon deploy/deploy_contracts.js",
"configure-whitelist:polygon": "hardhat run --network polygon deploy/configure-whitelist.js",
"deploy-bounties:polygon": "hardhat run --network polygon deploy/deploy_bounties.js",
"verify-contracts:polygon": "hardhat run --network polygon deploy/verify_contracts.js",
"deploy-contracts:localhost": "hardhat run --network localhost deploy/deploy_contracts.js",
"configure-whitelist:localhost": "hardhat run --network localhost deploy/configure-whitelist.js",
"deploy-bounties:localhost": "hardhat run --network localhost deploy/deploy_bounties.js",
"fund-bounties:localhost": "hardhat run --network localhost deploy/fund_bounties.js",
"slither": "slither . --exclude-dependencies"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "2.2.2",
"@nomiclabs/hardhat-etherscan": "3.1.3",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@superfluid-finance/ethereum-contracts": "1.5.0",
"@superfluid-finance/sdk-core": "0.6.1",
"chai": "4.3.7",
"dotenv": "16.0.3",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"fs": "0.0.1-security",
"graphql": "16.5.0",
"hardhat": "2.12.7",
"hardhat-contract-sizer": "2.6.1",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "1.2.1",
"path": "0.12.7",
"solidity-docgen": "0.6.0-beta.34",
"truffle-assertions": "0.9.2",
"web3": "1.7.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomiclabs/hardhat-web3": "2.0.0",
"@typechain/ethers-v5": "10.2.0",
"@typechain/hardhat": "6.1.5",
"eslint": "8.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"nodemon": "2.0.20",
"prettier": "2.0.5",
"solidity-coverage": "0.8.2",
"typechain": "8.1.1",
"typescript": "4.7.4"
}
}