forked from paraswap/paraswap-dex-lib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.24 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
72
73
74
75
76
77
{
"name": "@paraswap/dex-lib",
"version": "2.16.7",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/paraswap/paraswap-dex-lib",
"author": "[email protected]",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@paraswap/sdk": "^6.1.0",
"@types/async": "^3.2.15",
"@types/axios": "0.14.0",
"@types/express": "^4.17.14",
"@types/jest": "26.0.24",
"@types/lodash": "4.14.178",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"axios": "0.26.0",
"change-case": "^4.1.2",
"dotenv": "16.0.0",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"express": "^4.18.2",
"husky": "^8.0.2",
"jest": "^29.0.3",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.6.0",
"typescript": "4.6.4",
"yargs": "^17.0.1"
},
"scripts": {
"init-integration": "ts-node scripts/dex-integration.ts init",
"test-integration": "ts-node scripts/dex-integration.ts test",
"build": "yarn check:pq && yarn check:es && tsc",
"watch": "tsc -w",
"test": "jest",
"prepare": "husky install && yarn build",
"check:pq": "pretty-quick --staged",
"check:tsc": "tsc",
"check:es": "eslint \"src/**/*.ts\" --ignore-pattern=\"*.test.ts\"",
"checks": "yarn check:pq && yarn check:tsc && yarn check:es"
},
"dependencies": {
"@0x/utils": "^4.5.2",
"@hashflow/sdk": "1.2.4",
"@hashflow/taker-js": "0.0.2",
"@paraswap/core": "1.0.3",
"@sushiswap/router": "link:../sushi/frontend/sushiswap/packages/router",
"async": "^3.2.4",
"bignumber.js": "9.1.0",
"cross-fetch": "^3.1.5",
"es6-promise": "^4.2.8",
"ethers": "^5.6.5",
"joi": "^17.7.0",
"lens.ts": "^0.5.1",
"lodash": "4.17.21",
"log4js": "6.6.1",
"node-cache": "^5.1.2",
"ts-essentials": "9.1.2",
"web3": "1.6.0",
"web3-core": "1.6.0",
"web3-eth": "1.6.0",
"web3-eth-abi": "1.4.0",
"web3-eth-contract": "1.6.0",
"web3-utils": "1.6.0"
},
"sideEffects": false
}