-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 788 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 788 Bytes
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
{
"name": "tokenized-realty",
"version": "1.0.0",
"description": "Chainlink Fall 2022 Hackathon entry",
"main": "index.js",
"scripts": {
"start": "npx hardhat node",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"lint": "solhint 'contracts/*.sol'",
"coverage": "npx hardhat coverage",
"deploy": "npx hardhat run scripts/deploy.ts",
"deploy:local": "npx hardhat run --network localhost scripts/deploy.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"chai": "^4.3.6",
"hardhat": "^2.11.2",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2"
},
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@openzeppelin/contracts": "^4.7.3"
}
}