-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "@terminal-fi/swappa",
"version": "1.26.0",
"repository": {
"url": "https://github.com/terminal-fi/swappa"
},
"dependencies": {
"@celo/connect": "^6.0.0",
"@celo/contractkit": "^8.0.0",
"@mento-protocol/mento-core-ts": "^0.2.2",
"@mento-protocol/mento-sdk": "^0.2.4",
"@ubeswap/default-token-list": "^4.0.11",
"@uniswap/sdk-core": "^4.0.6",
"@uniswap/v3-sdk": "^3.10.0",
"axios": "^1.2.3",
"bignumber.js": "^9.0.1",
"ethers": "^5.7.2",
"web3": "1.10.0"
},
"resolutions": {
"@celo/connect": "^6.0.0",
"@celo/contractkit": "^8.0.0",
"web3": "1.10.0"
},
"devDependencies": {
"@celo/typechain-target-web3-v1-celo": "^1.0.0",
"@openzeppelin/contracts": "3.2.0",
"@typechain/truffle-v5": "^8.0.7",
"@typechain/web3-v1": "^6.0.7",
"@types/node": "^20.4.2",
"commander": "^12.0.0",
"eth-gas-reporter": "^0.2.22",
"truffle": "^5.1.54",
"truffle-flattener": "^1.5.0",
"truffle-typings": "^1.0.8",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.0.0"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"compile:contracts": "yarn truffle compile && yarn typechain --target=truffle-v5 'build/contracts/*.json' && yarn ts-node ./tools/codegen.ts",
"compile:ts": "yarn tsc -b",
"build": "yarn compile:contracts && yarn compile:ts",
"clean": "rm -rf ./build ./dist ./types",
"prepublishOnly": "yarn clean && yarn build",
"deploy": "yarn ts-node ./tools/deployer.ts",
"cli": "yarn ts-node src/cli/cli.ts",
"test": "yarn ts-node src/cli/test-pairs.ts"
},
"author": "Zviad Metreveli",
"license": "MIT"
}