-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
95 lines (95 loc) · 3.27 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@protocolink/logics",
"version": "1.8.7",
"description": "An SDK that build protocol logics for Protocolink",
"keywords": [
"furucombo",
"protocolink"
],
"repository": "https://github.com/dinngo/protocolink-logics.git",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"cli": "ts-node cli/index.ts",
"format": "pretty-quick && yarn sort-package-json",
"lint": "eslint --fix src",
"prepublishOnly": "yarn build",
"test": "mocha",
"test:e2e:latest": "yarn run test:e2e:mainnet && yarn run test:e2e:metis && yarn run test:e2e:bnb && yarn run test:e2e:polygonZkevm",
"test:e2e:mainnet": "env-cmd -f .env.mainnet hardhat test --grep 'mainnet:'",
"test:e2e:mainnet:pb": "env-cmd -f .env.mainnet.pb hardhat test --grep 'mainnet-pb:'",
"test:e2e:optimism:pb": "env-cmd -f .env.optimism.pb hardhat test --grep 'optimism-pb:'",
"test:e2e:iota:pb": "env-cmd -f .env.iota.pb hardhat test --grep 'iota-pb:'",
"test:e2e:metis": "env-cmd -f .env.metis hardhat test --grep 'metis:'",
"test:e2e:bnb": "env-cmd -f .env.bnb hardhat test --grep 'bnb:'",
"test:e2e:polygonZkevm": "env-cmd -f .env.polygonZkevm hardhat test --grep 'polygonZkevm:'",
"test:unit": "mocha --recursive src"
},
"dependencies": {
"@paraswap/sdk": "^6.6.0",
"@protocolink/common": "^0.5.5",
"@protocolink/core": "^0.6.4",
"@protocolink/smart-accounts": "^0.1.8",
"@types/lodash": "^4.14.195",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.2.6",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@uniswap/v3-sdk": "^3.9.0",
"axios": "^1.3.6",
"axios-retry": "^3.5.1",
"bignumber.js": "^9.1.1",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@protocolink/test-helpers": "^0.4.7",
"@typechain/ethers-v5": "^11.0.0",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/inquirer": "^8.2.5",
"@types/inquirer-autocomplete-prompt": "^2.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.23",
"@types/pretty-quick": "^3.1.1",
"@types/sinon": "^10.0.15",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"chai": "^4.3.7",
"env-cmd": "^10.1.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.1",
"glob": "^8.1.0",
"hardhat": "^2.15.0",
"husky": "^8.0.3",
"inquirer": "^8.2.5",
"inquirer-autocomplete-prompt": "^2.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"sinon": "^15.1.2",
"sort-package-json": "^2.5.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.2.0",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16"
}
}