-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 4.09 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
96
97
{
"name": "@astrolabs/swapper",
"version": "1.1.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/AstrolabFinance/swapper",
"author": "Astrolab DAO <[email protected]>",
"license": "MIT",
"description": "Generic Bridge+Swap aggregator for compatible EVMs",
"keywords": [
"astrolab",
"yield aggregation",
"aggregator",
"swap",
"bridge",
"DeFi",
"ethereum",
"smart-contract"
],
"scripts": {
"lint": "yarn prettier --check && yarn eslint",
"lint:fix": "yarn prettier --write && yarn eslint --fix",
"eslint": "yarn eslint 'src/**/*.ts' 'test/**/*.ts'",
"prettier": "yarn prettier \"**/*.{js,md,json}\"",
"test-unit": "yarn ts-mocha --require hardhat/register --timeout 120000 --recursive \"test/unit/**/*.ts\" --exit",
"test-integration": "yarn ts-mocha --require hardhat/register --timeout 120000 --recursive \"test/integration/**/*.ts\" --exit",
"build": "tsc --build . && cp -r contracts dist/contracts",
"deploy-tenderly": "yarn hardhat run --network tenderly scripts/deploy.ts",
"deploy-ethereum": "yarn hardhat run --network ethereum-mainnet scripts/deploy.ts",
"deploy-arbitrum": "yarn hardhat run --network arbitrum-mainnet-one scripts/deploy.ts",
"deploy-optimism": "yarn hardhat run --network optimism-mainnet scripts/deploy.ts",
"deploy-base": "yarn hardhat run --network base-mainnet scripts/deploy.ts",
"deploy-blast": "yarn hardhat run --network blast-mainnet scripts/deploy.ts",
"deploy-polygon": "yarn hardhat run --network polygon-mainnet scripts/deploy.ts",
"deploy-bnb-chain": "yarn hardhat run --network bnb-chain-mainnet scripts/deploy.ts",
"deploy-gnosis-chain": "yarn hardhat run --network gnosis-chain-mainnet scripts/deploy.ts",
"deploy-avalanche": "yarn hardhat run --network avalanche-mainnet scripts/deploy.ts",
"deploy-moonbeam": "yarn hardhat run --network moonbeam-mainnet scripts/deploy.ts",
"deploy-fantom": "yarn hardhat run --network fantom-mainnet-opera scripts/deploy.ts",
"deploy-scroll": "yarn hardhat run --network scroll-mainnet scripts/deploy.ts",
"deploy-linea": "yarn hardhat run --network linea-mainnet scripts/deploy.ts",
"deploy-mantle": "yarn hardhat run --network mantle-mainnet scripts/deploy.ts",
"deploy-mode": "yarn hardhat run --network mode-mainnet scripts/deploy.ts",
"deploy-celo": "yarn hardhat run --network celo-mainnet scripts/deploy.ts",
"test-tenderly": "yarn hardhat test --network tenderly test/integration/swapper.contract.test.ts --grep 'Fuzzy monochain'",
"prepublishOnly": "yarn build",
"clean": "yarn rimraf dist internal types *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo"
},
"files": [
"dist/",
"/contracts/**/*.sol",
"LICENSE",
"README.md"
],
"devDependencies": {
"@astrolabs/hardhat": "^1.2.29",
"@ethersproject/experimental": "^5.7.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^5.0.2",
"@tenderly/hardhat-tenderly": "^1.7.7",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.9",
"@types/qs": "^6.9.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"hardhat": "^2.18.3",
"mocha": "^10.2.0",
"mocha-multi": "^1.1.7",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.1",
"sync-fetch": "^0.5.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {},
"dependencies": {
"dotenv": "^16.3.1",
"qs": "^6.11.2"
}
}