-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
62 lines (62 loc) · 1.37 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
{
"author": "Justin Domingue",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.196",
"@uniswap/token-lists": "^1.0.0-beta.33",
"dts-cli": "^1.4.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^7.0.4",
"ts-jest": "^29.1.1",
"tslib": "^2.3.1",
"typescript": "^5.1.6",
"yarn-deduplicate": "^6.0.2"
},
"engines": {
"node": ">=16"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"jest": {
"testEnvironment": "node"
},
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"module": "dist/token-list-bridge-utils.esm.js",
"name": "@uniswap/token-list-bridge-utils",
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"build": "dts build",
"lint": "dts lint",
"prepare": "dts build",
"start": "dts watch",
"test": "dts test",
"deduplicate": "yarn-deduplicate --strategy=highest"
},
"typings": "dist/index.d.ts",
"version": "2.5.0",
"dependencies": {
"@arbitrum/sdk": "^3.1.6",
"@uniswap/sdk-core": "^4.0.6",
"axios": "^0.26.0",
"dotenv": "^16.0.1",
"ethers": "^5.6.5",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prettier": "^3.0.1",
"web3": "^1.7.3"
}
}