-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.48 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
{
"name": "contracts",
"version": "1.0.0",
"description": "A new and innovative launchpad for projects on the KuCoin Community Chain",
"main": "hardhat.config.js",
"scripts": {
"multicall:deploy": "npx hardhat --network kucoin_mainnet multicall:deploy",
"deploy": "npx hardhat --network kucoin_mainnet deploy",
"deploy:test": "npx hardhat --network kucoin_testnet deploy",
"flatten": "mkdir -p flattened; npx hardhat flatten contracts/Presale.sol > flattened/Presale.sol; npx hardhat flatten contracts/KuStarterToken.sol > flattened/KuStarterToken.sol; npx hardhat flatten contracts/KuStarterTimelockController.sol > flattened/KuStarterTimelockController.sol; npx hardhat flatten contracts/TokenVesting.sol > flattened/TokenVesting.sol;",
"liquidity": "npx hardhat --network kucoin_mainnet liquidity",
"liquidity:test": "npx hardhat --network kucoin_testnet liquidity",
"test": "npx hardhat test",
"whitelist": "npx hardhat --network kucoin_mainnet whitelist",
"whitelist:test": "npx hardhat --network kucoin_testnet whitelist"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.2.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^10.0.0",
"hardhat": "^2.4.3",
"yesno": "^0.3.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1"
}
}