-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
62 lines (62 loc) · 1.93 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
{
"name": "kyberswap-v2",
"version": "1.0.0",
"description": "This repository contains the contracts for the KyberSwap v2",
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "TS_NODE_TRANSPILE_ONLY=1 yarn hardhat test --no-compile",
"t": "UPDATE_SNAPSHOT=1 TS_NODE_TRANSPILE_ONLY=1 yarn hardhat test --no-compile",
"compile": "TS_NODE_TRANSPILE_ONLY=1 yarn hardhat compile",
"c": "printf 'yes' | yarn hardhat compile",
"coverage": "hardhat coverage",
"prettier": "prettier --write",
"prettierAll": "prettier --write contracts/* && prettier --write test/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/KyberNetwork/pro-amm.git"
},
"author": "Kyber SC Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/KyberNetwork/pro-amm/issues"
},
"dependencies": {
"dotenv": "8.2.0",
"solhint": "3.3.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/contracts": "4.3.1",
"@openzeppelin/test-helpers": "0.5.6",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.18.1",
"@typechain/ethers-v5": "6.0.5",
"@types/chai": "4.2.16",
"@types/mocha": "8.2.2",
"@types/node": "14.14.37",
"chai": "^4.3.4",
"chai-as-promised": "7.1.1",
"chai-bn": "0.2.2",
"decimal.js": "^10.3.1",
"ethereum-waffle": "3.3.0",
"ethers": "5.6.1",
"hardhat": "2.8.0-dev.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "1.0.4",
"hardhat-typechain": "0.3.5",
"mocha-chai-jest-snapshot": "^1.1.3",
"prettier": "2.4.1",
"prettier-plugin-solidity": "1.0.0-beta.14",
"solidity-coverage": "0.7.16",
"ts-generator": "0.1.1",
"ts-node": "9.1.1",
"typechain": "4.0.3",
"typescript": "4.2.4"
}
}