generated from xanderdeseyn/solidity-hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "flashloan",
"version": "1.0.0",
"main": "index.js",
"author": "Xander Deseyn",
"license": "MIT",
"scripts": {
"accounts": "yarn hardhat accounts",
"gen-types": "yarn typechain --target ethers-v5 --outDir types 'artifacts/!(build-info)/**/+([a-zA-Z0-9]).json'",
"node": "yarn hardhat node",
"compile": "yarn hardhat compile && yarn gen-types",
"deploy": "yarn hardhat run scripts/deploy.ts",
"test": "yarn hardhat test",
"watch": "yarn hardhat watch"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.3",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.19",
"hardhat": "^2.0.1",
"hardhat-watcher": "^1.0.13",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.1-solc-0.7",
"@typechain/ethers-v5": "^2.0.0",
"ts-generator": "^0.1.1",
"typechain": "^3.0.0"
}
}