-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "@uniswap/deploy-v3",
"version": "1.0.4",
"description": "Deploy Uniswap V3 smart contracts",
"bin": "dist/index.js",
"publishConfig": {
"access": "restricted"
},
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"build": "ncc build index.ts -o dist -m",
"postbuild": "cat shebang.txt dist/index.js > dist/index.cmd.js && mv dist/index.cmd.js dist/index.js",
"prestart": "yarn build",
"start": "node dist/index.js",
"prepublishOnly": "yarn build"
},
"files": [
"dist/"
],
"engines": {
"node": ">=12.18.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uniswap/deploy-v3.git"
},
"author": {
"email": "contact@uniswap.org",
"name": "Uniswap Labs",
"url": "https://uniswap.org"
},
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Uniswap/deploy-v3/issues"
},
"homepage": "https://uniswap.org",
"devDependencies": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.1",
"@ethersproject/wallet": "^5.5.0",
"@openzeppelin/contracts": "3.4.1-solc-0.7-2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.3",
"@uniswap/sdk-core": "^1.0.8",
"@uniswap/swap-router-contracts": "1.1.0",
"@uniswap/v3-core": "1.0.0",
"@uniswap/v3-periphery": "1.1.1",
"@uniswap/v3-staker": "1.0.2",
"@vercel/ncc": "^0.33.1",
"chai": "^4.2.0",
"commander": "^6.1.0",
"ganache-cli": "^6.10.1",
"immer": "^7.0.8",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"v3-periphery-1_3_0": "npm:@uniswap/v3-periphery@1.3.0"
}
}