-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "hardhat-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "npx hardhat clean && rm -fr ../frontend/src/typechain",
"compile": "npx hardhat compile && rsync -r typechain ../frontend/src",
"test": "npx hardhat test"
},
"keywords": [],
"author": "Filip M.",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.5",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.5",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"ts-node": "^10.3.0",
"typechain": "^5.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
}
}