-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
71 lines (71 loc) · 2.01 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": "@uniswap/conedison",
"version": "0.0.1",
"description": "Utilities for Uniswap front-end development",
"repository": "https://github.com/Uniswap/conedison",
"homepage": "https://github.com/Uniswap/conedison#readme",
"bugs": "https://github.com/Uniswap/conedison/issues",
"files": [
"dist/"
],
"exports": {
"./*": "./dist/*"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"scripts": {
"lint": "eslint src",
"test": "jest src",
"typecheck": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn build",
"release": "semantic-release"
},
"keywords": [
"utils",
"utilities",
"uniswap"
],
"license": "GPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@uniswap/sdk-core": "^3.1.0",
"@walletconnect/ethereum-provider-v1": "npm:@walletconnect/ethereum-provider@^1.8.0",
"@walletconnect/ethereum-provider-v2": "npm:@walletconnect/ethereum-provider@^2.4.6",
"babel-jest": "^29.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethers": "^5.6.1",
"jest": "^29.3.0",
"prettier": "^2.2.1",
"react": "^18.2.0",
"semantic-release": "^19.0.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@uniswap/sdk-core": ">=3",
"ethers": "^5.6.1"
}
}