-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
38
39
{
"name": "dob-evm",
"version": "1.0.0",
"description": "An ETH backed Non-Fungible Token protocol",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js"
},
"keywords": [
"solidity",
"ethereum",
"nft",
"smart-contracts",
"hardhat"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts": "^4.9.3",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"ethers": "^6.8.0",
"hardhat": "^2.17.1",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.15",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.8.3"
}
}