forked from EveryoneDao/571G_proj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 KB
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
64
65
66
67
68
69
70
71
{
"name": "hardhat-tutorial",
"version": "1.0.0",
"description": "This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts.",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "npx hardhat --network ropsten run ./scripts/ropsten/deploy_token.ts",
"verify": "npx hardhat --network ropsten verify 0x79e32fCCD37491c68542e0c6f4cddB5c987749bc 10000000000000000000000 18"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@alch/alchemy-web3": "^1.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.4.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"chai": "^4.3.4",
"dotenv": "^14.3.2",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.1",
"find-config": "^1.0.0",
"hardhat": "^2.9.1",
"hardhat-deploy": "^0.9.27",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-overlay": "^6.0.9",
"react-scripts": "4.0.3",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typescript": "^4.5.5",
"web-vitals": "^1.0.1"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"antd": "^4.19.5",
"big-number": "^2.0.0",
"history": "^5.3.0",
"material-ui": "^0.20.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"web3": "^1.7.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}