-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 893 Bytes
/
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
{
"name": "nft-escrow",
"version": "0.0.1",
"scripts": {
"typechain": "hardhat typechain",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"test": "hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"hardhat": "^2.1.2",
"hardhat-gas-reporter": "^1.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@openzeppelin/contracts": "^4.0.0",
"hardhat-deploy": "^0.7.2",
"hardhat-typechain": "^0.3.5"
}
}