forked from uniswap-zksync/era-uniswap-v3-periphery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"name": "era-uniswap-v3-periphery",
"description": "🎚 Peripheral smart contracts for interacting with Pegasys V3 forked for zkSync Era",
"license": "GPL-2.0-or-later",
"publishConfig": {
"access": "public"
},
"version": "1.1.1",
"keywords": [
"uniswap",
"periphery",
"v3"
],
"repository": {
"type": "git",
"url": "https://github.com/uniswap-zksync/era-uniswap-v3-periphery"
},
"files": [
"contracts/base",
"contracts/interfaces",
"contracts/libraries",
"artifacts-zk/contracts/**/*.json",
"!artifacts-zk/contracts/**/*.dbg.json",
"!artifacts-zk/contracts/test/**/*",
"!artifacts-zk/contracts/base/**/*"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.1-solc-0.7-2",
"@uniswap/lib": "^4.0.1-alpha",
"@pegasys/v2-core": "https://github.com/pegasys-fi/zk-pegasys-v2-core.git#v1.0.1-zksync-era",
"@pegasys/v3-core": "https://github.com/pegasys-fi/zk-pegasys-v3-core.git#v1.0.0-zksync-era",
"base64-sol": "1.0.1",
"hardhat-watcher": "^2.1.1"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.3.17",
"@matterlabs/hardhat-zksync-verify": "^0.1.5",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"decimal.js": "^10.2.1",
"ethereum-waffle": "^3.0.2",
"ethers": "^5.7.0",
"hardhat": "^2.14.0",
"hardhat-typechain": "^0.3.5",
"is-svg": "^4.3.1",
"mocha": "^6.2.2",
"mocha-chai-jest-snapshot": "^1.1.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint": "^3.2.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^8.5.4",
"typechain": "^4.0.0",
"typescript": "^3.7.3",
"zksync-web3": "^0.14.3"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test"
}
}