-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "w2w",
"version": "2.1.0",
"description": "Wallet2Wallet",
"main": "index.js",
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"ganache": "ganache-cli --gasLimit 100000000",
"mainnet-deploy": "truffle deploy --network mainnet --reset",
"bsc-deploy": "truffle deploy --network bsc --reset",
"ganache-mainnet": "ganache-cli --gasLimit 100000000 -a 80 -f https://mainnet.infura.io/v3/",
"validate": "eslint test/*.js && solhint contracts/*.sol contracts/*/*.sol",
"validate-js": "eslint test/*.js test/helpers/*.js --fix",
"validate-sol": "solhint contracts/*.sol contracts/*/*.sol --fix",
"coverage": "truffle run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dexe-network/W2WProtocol.git"
},
"keywords": [
"ethereum",
"uniswap",
"token",
"sale"
],
"author": "Armen Arakelian, Yaroslav Tumanov, Oleksii Matiiasevych",
"license": "ISC",
"bugs": {
"url": "https://github.com/dexe-network/W2WProtocol/issues"
},
"homepage": "https://github.com/dexe-network/W2WProtocol#readme",
"dependencies": {
"@openzeppelin/contracts": "3.1.0-solc-0.7",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
"devDependencies": {
"@truffle/hdwallet-provider": "1.2.0",
"bluebird": "^3.7.2",
"deep-object-diff": "^1.1.0",
"delay": "4.4.0",
"dotenv": "8.2.0",
"eslint": "7.7.0",
"eslint-config-google": "0.14.0",
"ganache-cli": "6.10.1",
"solhint": "3.2.0",
"solidity-coverage": "^0.7.12",
"truffle": "5.1.52",
"truffle-assertions": "0.9.2",
"web3": "1.3.0"
}
}