forked from aave-starknet-project/aave-starknet-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 2.39 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": "aave-starknet-phase1",
"version": "0.0.0",
"description": "Bridging staticATokens to Starknet to allow for cheap reward collection and token transfer.",
"main": "index.js",
"scripts": {
"test": "hardhat --network l1_testnet test",
"testnet:l2": ".venv/bin/starknet-devnet --host 0.0.0.0 --lite-mode",
"testnet:l1": "if test -f .env; then export $(cat .env | xargs);fi; yarn ganache --fork https://eth-mainnet.alchemyapi.io/v2/$ALCHEMY_KEY@$BLOCK_NUMBER --gasPrice 2000000000000 -u $DAI_WHALE -u $USDC_WHALE -u $STKAAVE_WHALE -u $EMISSION_MANAGER",
"testnet:l1:docker": "if test -f .env; then export $(cat .env | xargs);fi; yarn ganache --host 0.0.0.0 --fork https://eth-mainnet.alchemyapi.io/v2/$ALCHEMY_KEY@$BLOCK_NUMBER --gasPrice 2000000000000 -u $DAI_WHALE -u $USDC_WHALE -u $STKAAVE_WHALE -u $EMISSION_MANAGER",
"lint:check": "npx prettier --check . && find contracts/ -iname '*.cairo' -exec .venv/bin/cairo-format -c {} +",
"lint:fix": "npx prettier --write . && find contracts/ -iname '*.cairo' -exec .venv/bin/cairo-format -i {} +",
"compile:l1": "hardhat compile",
"compile:l2": "hardhat starknet-compile --cairo-path 'node_modules/@joriksch/oz-cairo/src'",
"deploy:account": "yarn hardhat starknet-deploy-account --starknet-network l2_testnet --wallet OpenZeppelin",
"deploy-bridge:testnet": "hardhat run ./scripts/deploy.ts --network l1_testnet",
"prepare": "husky install"
},
"author": "AAVE",
"license": "Apache-2.0",
"dependencies": {
"@aave/core-v3": "^1.13.1",
"@aave/protocol-v2": "^1.0.1",
"@joriksch/oz-cairo": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@shardlabs/starknet-hardhat-plugin": "^0.5.4",
"@toruslabs/starkware-crypto": "^1.0.0",
"@types/chai": "^4.2.22",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"chai": "^4.3.4",
"chai-bignumber": "^3.0.0",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.4.6",
"ganache": "^7.0.5",
"hardhat": "2.9.3",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"*.{js,ts,sol}": "npx prettier --write",
"*.cairo": "cairo-format -i"
}
}