forked from KyberNetwork/ks-classic-sc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@dynamic-amm/smart-contracts",
"version": "1.0.1",
"description": "This repository has the contracts for the Dynamic AMM protocol.",
"license": "BUSL-1.1",
"publishConfig": {
"access": "public"
},
"keywords": [
"smart-contracts",
"dynamic-amm",
"ethereum"
],
"repository": {
"type": "git",
"url": "https://github.com/dynamic-amm/smart-contracts.git"
},
"directories": {
"test": "test"
},
"files": [
"contracts/interfaces",
"contracts/libraries",
"artifacts/contracts/DMMPool.sol/DMMPool.json",
"artifacts/contracts/DMMFactory.sol/DMMFactory.json",
"artifacts/contracts/periphery/DMMRouter02.sol/DMMRouter02.json",
"artifacts/contracts/interfaces/**/*.json",
"!artifacts/contracts/interfaces/**/*.dbg.json"
],
"scripts": {
"compile": "yarn hardhat compile && yarn hardhat size-contracts",
"test": "yarn hardhat test --no-compile",
"solhint": "./node_modules/.bin/solhint -f table 'contracts/**/*.sol'",
"prettier": "./node_modules/.bin/prettier --write contracts/",
"lint": "./node_modules/.bin/solhint -f table 'contracts/**/*.sol'",
"coverage": "./coverage.sh"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.1",
"@nomiclabs/hardhat-ganache": "2.0.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/test-helpers": "0.5.6",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bn": "0.2.1",
"dotenv": "8.2.0",
"hardhat": "2.0.3",
"hardhat-contract-sizer": "2.0.2",
"husky": "4.3.0",
"prettier": "2.0.2",
"prettier-plugin-solidity": "1.0.0-alpha.54",
"solhint": "3.2.0",
"solhint-plugin-prettier": "0.0.4",
"solidity-coverage": "0.7.12",
"typescript": "3.9.7",
"web3": "1.2.6",
"@uniswap/lib": "1.1.1",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"ethers": "5.0.0",
"web3-eth-abi": "1.2.11"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.1"
}
}