-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "my-wave-portal",
"version": "1.0.0",
"description": "Simple Wave Portal",
"keywords": [
"web3",
"solidity",
"hardhat",
"ethereum",
"crypto"
],
"author": "Attila Csanyi",
"homepage": "https://wave-p0rtal.herokuapp.com/",
"license": "ISC",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"compile": "npx hardhat compile",
"accounts": "npx hardhat accounts",
"clean": "npx hardhat clean",
"h:test": "npx hardhat test",
"run": "npx hardhat run scripts/run.js ",
"node": "npx hardhat node",
"deploy:local": "npx hardhat run scripts/deploy.js --network localhost",
"deploy:rinkeby": "npx hardhat run scripts/deploy.js --network rinkeby"
},
"dependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"dotenv": "16.0.1",
"ethers": "5.4.4",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-scripts": "3.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"chai": "4.3.6",
"ethereum-waffle": "3.4.4",
"ethers": "5.6.9",
"hardhat": "2.9.9"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}