-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
37
38
39
40
41
{
"name": "blockchain-example",
"version": "1.0.0",
"description": "Example project with simple smart contract and front end",
"repository": "https://github.com/inc4/blockchain-example",
"author": "Oleksiy Pyltsov <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"deploy": "hardhat run scripts/deploy.js",
"start": "react-scripts start"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.0.0",
"hardhat": "^2.6.4",
"hardhat-abi-exporter": "^2.3.0"
},
"dependencies": {
"ethers": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"web-vitals": "^2.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}