-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.17 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
{
"name": "sbt-minting-platform",
"version": "1.0.0",
"description": "Soul Bound Token minting platform on Base Chain",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deploy": "node scripts/deploy.js",
"generate-wallets": "node scripts/generateWallets.js",
"fund-wallets": "node scripts/fundWallets.js",
"mint": "node scripts/mintSBT.js",
"test": "echo \"Tests not configured\" && exit 0"
},
"keywords": ["SBT", "Soul Bound Token", "Base Chain", "NFT"],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^4.0.3",
"@nomicfoundation/hardhat-network-helpers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^3.0.8",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"chai": "^6.2.2",
"dotenv": "^17.2.3",
"hardhat": "^3.1.2",
"hardhat-gas-reporter": "^2.3.0",
"solidity-coverage": "^0.8.17",
"typechain": "^8.3.2"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"ethers": "^6.16.0"
}
}