forked from nominex/eth-smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "nmx-contracts",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "mkdir -p dist && truffle compile && node process-contracts.js && cp lib/dist-package.json dist/package.json",
"test": "truffle test --network=testrpc",
"clean": "rm -rf dist && rm -rf build",
"publish": "npm publish dist/",
"deploy-pool-test": "truffle exec scripts/deploy-pool.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/bitchangers/eth-smart-contracts.git"
},
"author": "igurev@nominex.io",
"license": "ISC",
"homepage": "https://bitbucket.org/bitchangers/eth-smart-contracts#readme",
"dependencies": {
"@ethersproject/address": "^5.0.9",
"@ethersproject/contracts": "^5.0.9",
"@ethersproject/providers": "^5.0.19",
"@ethersproject/solidity": "^5.0.8",
"@openzeppelin/contracts": "^3.3.0",
"@truffle/contract": "^4.3.5",
"@truffle/provisioner": "^0.2.12",
"@trufflesuite/web3-provider-engine": "^15.0.13-1",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-b-eta.0",
"abdk-libraries-solidity": "^2.4.0",
"ethereumjs-wallet": "^1.0.1",
"nconf": "^0.11.2",
"truffle": "5.1.63",
"web3": "^1.3.3"
},
"devDependencies": {
"eth-gas-reporter": "^0.2.20",
"ganache-cli": "^6.12.2",
"ganache-core": "^2.13.2",
"mocha-steps": "^1.3.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"remixd": "^0.2.4-alpha.0",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.20"
}
}