forked from bgd-labs/aave-proposals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.54 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
{
"name": "aave-v3-cross-chain-listing-template",
"version": "1.0.0",
"scripts": {
"lint": "prettier ./",
"lint:fix": "npm run lint -- --write",
"simulate:mainnet": "env-cmd aave-tenderly-cli --networkId 1 --keepAlive --artifactPath",
"simulate:optimism": "env-cmd aave-tenderly-cli --networkId 10 --keepAlive --artifactPath",
"simulate:polygon": "env-cmd aave-tenderly-cli --networkId 137 --keepAlive --artifactPath",
"simulate:arbitrum": "env-cmd aave-tenderly-cli --networkId 42161 --keepAlive --artifactPath",
"simulate:avalanche": "env-cmd aave-tenderly-cli --networkId 43114 --keepAlive --artifactPath",
"simulate:fantom": "env-cmd aave-tenderly-cli --networkId 250 --keepAlive --artifactPath",
"generate": "tsx generator/generator",
"generate:bgd": "tsx generator/generator -a 'BGD labs'"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/aave-v3-crosschain-listing-template"
},
"keywords": [],
"author": "BGD labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/bgd-labs/aave-v3-crosschain-listing-template/issues"
},
"homepage": "https://github.com/bgd-labs/aave-v3-crosschain-listing-template#readme",
"devDependencies": {
"@bgd-labs/aave-tenderly-cli": "^0.0.13",
"env-cmd": "^10.1.0",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.3",
"tsx": "^3.12.7"
},
"dependencies": {
"@bgd-labs/aave-cli": "^0.0.21",
"@inquirer/prompts": "^3.0.2",
"commander": "^11.0.0",
"viem": "^1.6.0"
}
}