-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 KB
/
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
33
34
35
36
{
"name": "charitydao",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"markdown-to-html": {
"document": {
"title": "Developing, Deploying and operating a DAO",
"description": "A simple tutorial that shows how to develop, deploy and operate a Decentralized Autonomous Organization (DAO).",
"meta": [
{
"description": "A simple tutorial that shows how to develop, deploy and operate a Decentralized Autonomous Organization (DAO)."
},
{
"keywords": "DAO,Solidity,dApp,DAO development, DAO deployment"
}
]
},
"favicon": "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌐</text></svg>",
"github-corners": "https://github.com/KTRDeveloper/charity-dao"
},
"scripts": {
"docs": "markdown-to-html --source docs/index.md --output docs/index.html"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"ethers": "^6.13.4",
"hardhat": "^2.22.16",
"markdown-to-html-cli": "^4.1.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.1.0",
"dotenv": "^16.4.5"
}
}