-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 985 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
36
37
38
39
{
"name": "ethereum-box",
"version": "1.0.0",
"description": "A simple but test-complete example of an end-to-end Etherum dApp implementation.",
"scripts": {
"test": "hardhat test",
"build": "snowpack build",
"start": "snowpack dev"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/xtyrrell/ethereum-box.git"
},
"keywords": [
"solidity",
"ethereum",
"smart-contract",
"dapp"
],
"author": "xtyrrell",
"license": "MIT",
"bugs": {
"url": "https://github.com/xtyrrell/ethereum-box/issues"
},
"homepage": "https://github.com/xtyrrell/ethereum-box#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.0.1",
"@snowpack/plugin-sass": "^1.4.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"hardhat": "^2.2.1",
"snowpack": "^3.3.5"
},
"dependencies": {
"ethers": "^5.1.3"
}
}