forked from DigitalMOB2/fevm-uniswap-v3-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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": "@uniswap/v3-core",
"description": "🦄 Core smart contracts of Uniswap V3",
"license": "BUSL-1.1",
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"homepage": "https://uniswap.org",
"keywords": [
"uniswap",
"core",
"v3"
],
"repository": {
"type": "git",
"url": "https://github.com/Uniswap/uniswap-v3-core"
},
"files": [
"contracts/interfaces",
"contracts/libraries",
"artifacts/contracts/UniswapV3Factory.sol/UniswapV3Factory.json",
"artifacts/contracts/UniswapV3Pool.sol/UniswapV3Pool.json",
"artifacts/contracts/interfaces/**/*.json",
"!artifacts/contracts/interfaces/**/*.dbg.json"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"bignumber.js": "^9.1.2",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"decimal.js": "^10.4.3",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.7",
"mocha": "^10.1.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test"
}
}