This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "make-web3-dapp",
"version": "1.0.2",
"keywords": [
"web3",
"create-web3-dapp",
"hardhat",
"ethers",
"solidity",
"ethereum",
"dapp"
],
"dependencies": {
"@babel/preset-react": "^7.18.6",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@openzeppelin/contracts": "^4.7.3",
"@rainbow-me/rainbowkit": "^0.5.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.5",
"assert": "^2.0.0",
"bootstrap": "^5.1.3",
"browserify-zlib": "^0.2.0",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"hardhat": "^2.11.1",
"https-browserify": "^1.0.0",
"jquery": "^3.6.0",
"os-browserify": "^0.3.0",
"popper.js": "^1.16.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moralis": "^1.4.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"wagmi": "^0.6.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"deploy": "npx hardhat run src/backend/scripts/deploy.js",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"react-app-rewired": "^2.2.1"
},
"bin": {
"make-web3-dapp": "./bin/generate-app.js"
}
}