forked from paraswap/paraswap-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.41 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
{
"name": "paraswap",
"version": "5.1.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"typegen": "typechain --target ethers-v5 --outDir ./src/abi/types \"./src/abi/*.json\""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"async": "^3.1.0",
"axios": "0.21.2",
"bignumber.js": "8.1.1",
"lodash": "4.17.21",
"qs": "^6.9.1",
"ts-essentials": "^7.0.0",
"web3": "^1.5.0",
"paraswap-core": "1.0.2"
},
"devDependencies": {
"@types/async": "^3.0.3",
"@types/dotenv": "6.1.1",
"@types/jest": "24.0.18",
"@types/lodash": "^4.14.149",
"@types/qs": "^6.9.0",
"dotenv": "7.0.0",
"ethers": "^5.0.17",
"husky": "^4.3.0",
"jest": "24.9.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"ts-jest": "24.1.0",
"typescript": "^3.6.3"
},
"author": "ParaSwap",
"description": "ParaSwap SDK",
"license": "MIT",
"keywords": [
"web3",
"web3js",
"ethereum",
"crypto",
"blockchain",
"DEX",
"paraswap",
"ether",
"eth",
"dai",
"tokens",
"exchange",
"erc-20",
"erc20"
],
"repository": {
"type": "git",
"url": "https://github.com/paraswap/paraswap-sdk"
},
"publishConfig": {
"access": "public"
},
"bugs": "[email protected]"
}