-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 955 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
31
32
{
"name": "nft-rental-with-hardhat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --write \"./**/*.{ts,tsx,json,md,sol}\"",
"build": "npm run hardhat:compile && npm run copy-abis",
"clean": "npm run hardhat:clean && rimraf artifacts dist typechain abi build cache",
"hardhat:compile": "hardhat compile",
"hardhat:clean": "hardhat clean",
"copy-abis": "cd scripts && node copy-abis.js && cd .."
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.9.2",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0"
}
}