-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
39 lines (39 loc) · 1.42 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
{
"name": "dexkitcontracts",
"version": "0.0.1",
"description": "DexKit smart contracts ",
"main": "index.js",
"scripts": {
"compile": "oz compile",
"verify": "oz verify",
"test": "mocha --exit --recursive test",
"test-sale": "mocha --exit --recursive --timeout 20000 ./test/dexkit-sale.test.js ",
"test-airdrop": "mocha --exit --recursive --timeout 20000 ./test/tokenAirdrop.test.js ",
"flat": "truffle-flattener ./contracts/DexKit.sol > ./flats/DexKitFlat.sol",
"flat-bit": "truffle-flattener ./contracts/BITTOKEN.sol > ./flats/BITTOKENFlat.sol",
"flat-sale": "truffle-flattener ./contracts/DexKitSale.sol > ./flats/DexKitSaleFlat.sol",
"flat-lock": "truffle-flattener ./contracts/TokenTimelock.sol > ./flats/TokenTimelockFlat.sol"
},
"author": "JoaoCampos89",
"license": "MIT",
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"truffle-flattener": "^1.5.0"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-etherscan": "^2.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/test-environment": "^0.1.5",
"@openzeppelin/test-helpers": "^0.5.6",
"@truffle/hdwallet-provider": "^1.1.0",
"chai": "^4.2.0",
"ethers": "^5.0.24",
"mocha": "^8.1.3"
}
}