forked from NomicFoundation/hardhat-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 915 Bytes
/
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
{
"name": "hardhat-hackathon-boilerplate",
"version": "1.0.0",
"description": "A boilerplate repository to get you started with Hardhat and Ethereum development",
"directories": {
"test": "test"
},
"scripts": {
"test": "hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomiclabs/hardhat-hackathon-boilerplate.git"
},
"keywords": [
"hardhat",
"ethereum",
"hackathon"
],
"author": "Nomic Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/nomiclabs/hardhat-hackathon-boilerplate/issues"
},
"homepage": "https://github.com/nomiclabs/hardhat-hackathon-boilerplate#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.0",
"hardhat": "^2.3.0",
"husky": "^4.2.5"
}
}