-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.44 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
{
"name": "prode",
"version": "1.0.0",
"description": "A betting sports platform.",
"license": "MIT",
"scripts": {
"prettier": "prettier --write 'contracts/**/*.sol'",
"deploy:kovan": "npx hardhat run --network kovan scripts/deploy.js",
"deploy:gnosis": "npx hardhat run --network gnosis scripts/deploy.js",
"deploy:burner:gnosis": "npx hardhat run --network gnosis scripts/deploy-burner.js",
"deploy:distributor:gnosis": "npx hardhat run --network gnosis scripts/deploy-distributor.js",
"ranking:gnosis": "npx hardhat run --network gnosis scripts/register-ranking.js",
"rewards:gnosis": "npx hardhat run --network gnosis scripts/distribute-rewards.js",
"reimburse:gnosis": "npx hardhat run --network gnosis scripts/reimburse-players.js"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.19.1",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.2.0"
},
"dependencies": {
"@connext/interfaces": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@reality.eth/contracts": "^3.0.2",
"base64-sol": "1.0.1",
"graphql": "^16.4.0",
"graphql-request": "^4.2.0",
"solidity-rlp": "^2.0.5"
}
}