-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
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
69
70
71
72
73
74
75
{
"name": "krystal-bsc-core",
"version": "1.0.0",
"description": "Core smart contracts of Krystal BSC",
"directories": {
"test": "test"
},
"scripts": {
"test": "./cmd.sh -x test",
"t": "yarn test",
"compile": "export NODE_OPTIONS=--max-old-space-size=4096 && yarn hardhat compile",
"c": "yarn compile",
"coverage": "yarn hardhat coverage",
"deploy": "./cmd.sh -x deploy",
"d": "yarn deploy",
"prettier": "./node_modules/.bin/prettier --write",
"size": "yarn run hardhat size-contracts",
"s": "yarn run hardhat size-contracts",
"lint": "yarn solhint contracts/**/*.sol && yarn eslint . --ext .ts",
"lint:fix": "yarn prettier --write contracts/**/*.sol && yarn eslint --fix . --ext .ts ",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/KyberSwap/krystal-core"
},
"author": "Krystal team",
"license": "ISC",
"bugs": {
"url": "https://github.com/KyberSwap/SmartWalletContracts/issues"
},
"homepage": "https://github.com/KyberSwap/SmartWalletContracts#readme",
"dependencies": {
"@kyber.network/utils-sc": "^2.2.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@openzeppelin/contracts": "^3.4.2",
"@openzeppelin/contracts-upgradeable": "^3.4.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-periphery": "^1.1.0",
"axios": "^0.21.4",
"dotenv": "^10.0.0",
"solc": "0.7.6"
},
"devDependencies": {
"@gnosis.pm/safe-core-sdk": "^0.3.1",
"@nomicfoundation/hardhat-verify": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "0.5.11",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.2",
"@typescript-eslint/parser": "^4.22.1",
"chai": "^4.3.4",
"chai-bn": "0.2.1",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.4.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.6.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "0.7.16",
"ts-node": "^10.0.0",
"typechain": "^5.0.0",
"typescript": "^4.2.4"
}
}