forked from Gauddel/gelato-instadapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.69 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
{
"name": "gelato-instadapp-debt-bridge",
"version": "0.0.6",
"description": "The smart contract and tests for gelato-instadapp debt bridge",
"repository": "https://github.com/joelamouche/gelato-instadapp-debt-bridge/",
"author": "Antoine Estienne",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "npm run compile && npx buidler typechain",
"compile": "npx buidler compile",
"test": "npx buidler test",
"compileJs": "rm -rf dist && tsc",
"cleanInstall": "rm -rf node_modules && rm package-lock.json && npm install",
"ganache": "INFURA_PRIVATE_KEY=$INFURA_PRIVATE_KEY INFURA_ID=$INFURA_ID ganache-cli -f https://:${INFURA_PRIVATE_KEY}@mainnet.infura.io/v3/${INFURA_ID} -s seed"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-waffle": "^2.1.0",
"@typechain/ethers-v4": "^1.0.1",
"@typechain/truffle-v4": "^2.0.3",
"@typechain/truffle-v5": "^2.0.2",
"@typechain/web3-v1": "^1.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"buidler-typechain": "^0.1.1",
"chai": "^4.2.0",
"dotenv": "8.2.0",
"ethereum-waffle": "3.0.2",
"prettier": "2.0.5",
"ts-generator": "0.0.8",
"ts-node": "^9.0.0",
"typechain": "^2.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@gelatonetwork/core": "^0.6.0",
"dsa-sdk": "^1.4.43",
"ethers": "^5.0.14",
"web3": "^1.3.0"
}
}