forked from DimensionDev/RedPacket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.78 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
{
"scripts": {
"compile": "hardhat compile",
"deploy:arbitrum_rinkeby": "hardhat --network arbitrum_rinkeby deploy",
"deploy:arbitrum": "hardhat --network arbitrum deploy",
"deploy:mainnet": "hardhat --network mainnet deploy",
"deploy:ropsten": "hardhat --network ropsten deploy",
"deploy:rinkeby": "hardhat --network rinkeby deploy",
"deploy:xdai": "hardhat --network xdai deploy",
"deploy:bsc_mainnet": "hardhat --network bsc_mainnet deploy",
"deploy:matic_mainnet": "hardhat --network matic_mainnet deploy",
"test:erc721": "hardhat test ./test/TestRP_erc721.js",
"test:normal": "hardhat test ./test/TestRedPacket.js",
"format": "prettier --write './test/*.js' './deploy/*.ts'"
},
"dependencies": {
"@openzeppelin/contracts": "^4.0.0",
"axios": "1.15.0",
"openzeppelin-solidity": "^4.1.0",
"socket.io-client": "4.8.3"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"bignumber.js": "2.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"ethers": "^5.4.1",
"hardhat": "^2.5.0",
"hardhat-deploy": "^0.7.6",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^1.19.1",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.13",
"truffle": "^5.1.65",
"web3": "^1.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}