-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 3.27 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
{
"name": "coins-league",
"version": "0.0.2",
"main": "index.ts",
"repository": "https://github.com/DexKit/coins-league.git",
"engines": {
"node": "16.13.1"
},
"author": "JoaoCampos89 <[email protected]>",
"scripts": {
"test": "npx hardhat test test/squid.test.ts",
"test:battle": "npx hardhat test test/battle.test.ts",
"test:factory": "npx hardhat test test/factory-v4.test.ts",
"compile": "npx hardhat compile",
"script:whitelist": "npx hardhat run scripts/whitelist-address.ts --network matic",
"deploy:mumbai": "npx hardhat run scripts/deploy-factory.ts --network mumbai",
"deploy-tether:mumbai": "npx hardhat run scripts/Token/deploy-tether-mumbai.ts --network mumbai",
"deploy:polygon": "npx hardhat run scripts/deploy-factory-matic.ts --network matic",
"deploy:v3:mumbai": "npx hardhat run scripts/Coinleague/deploy-factory-mumbai-v3.ts --network mumbai",
"deploy:v3:polygon": "npx hardhat run scripts/Coinleague/deploy-factory-matic-v3.ts --network matic",
"deploy:v2:polygon": "npx hardhat run scripts/deploy-factory-matic-v2.ts --network matic",
"deploy:v2:binance": "npx hardhat run scripts/deploy-factory-bsc-v2.ts --network bsc",
"deploy-nft:v2:polygon": "npx hardhat run scripts/deploy-factory-nft-matic-v2.ts --network matic",
"update-settings:v2:polygon": "npx hardhat run scripts/update-settings-matic-v2.ts --network matic",
"update-settings:v2:bsc": "npx hardhat run scripts/update-settings-bsc-v2.ts --network bsc",
"deploy:room:polygon": "npx hardhat run scripts/deploy-room-factory-matic.ts --network matic",
"deploy-roles:polygon": "npx hardhat run scripts/deploy-factory-matic-roles.ts --network matic",
"fill-game:polygon": "npx hardhat run scripts/fill-game-v2.ts --network polygon",
"buy-kit:polygon": "npx hardhat run scripts/buy-kit.ts --network polygon",
"deploy-nft-league:mumbai": "npx hardhat run scripts/NFTLeague/deploy-nft-league-mumbai.ts --network mumbai",
"deploy-squid:mumbai": "npx hardhat run scripts/SquidGame/deploy-squid-mumbai.ts --network mumbai",
"deploy-nft-league:matic": "npx hardhat run scripts/NFTLeague/deploy-nft-league-matic.ts --network matic",
"deploy-squid:matic": "npx hardhat run scripts/SquidGame/deploy-squid-matic.ts --network matic",
"owner:mumbai": "npx hardhat run scripts/owner.ts --network mumbai"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.12",
"@symfoni/hardhat-react": "^0.3.0",
"@typechain/ethers-v5": "^7.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.10",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.3",
"hardhat": "^2.6.0",
"hardhat-contract-sizer": "^2.1.0",
"hardhat-deploy": "^0.8.11",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"ts-generator": "^0.1.1",
"ts-morph": "^11.0.3",
"ts-node": "^10.2.0",
"typechain": "4.0.0",
"typechain-target-ethers-v5": "^5.0.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@openzeppelin/contracts": "^4.3.2",
"axios": "^0.24.0",
"dotenv": "^10.0.0"
}
}