-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 853 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 853 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
{
"name": "pizzapoap",
"version": "0.1.0",
"description": "Automatic POAP-like attendance NFT dispenser for Pizza DAO community calls on Monad",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy:testnet": "hardhat run scripts/deploy.ts --network monadTestnet",
"deploy:mainnet": "hardhat run scripts/deploy.ts --network monadMainnet",
"dispense": "ts-node src/dispenser.ts"
},
"keywords": ["poap", "nft", "monad", "pizza-dao", "attendance"],
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"hardhat": "^2.22.0",
"typescript": "^5.4.0",
"ts-node": "^10.9.0",
"@types/node": "^20.11.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"ethers": "^6.13.0",
"googleapis": "^144.0.0",
"dotenv": "^16.4.0"
}
}