-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
67 lines (67 loc) · 1.98 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
{
"name": "web3-boilerplate",
"description": "Clean Web3 Boilerplate using the latest stack out there: Typescript ^5, react ^18 (including react-scrits ^5), and @web3-react/core v8. Enjoy!",
"version": "0.2.2",
"author": "Pedrojok01 <[email protected]>",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix \"**/*.{js,ts,tsx}\"",
"prettier": "prettier --config .prettierrc \"**/*.{ts,tsx,js}\" --write"
},
"dependencies": {
"@ant-design/icons": "5.3.7",
"@coinbase/wallet-sdk": "3.7.2",
"@walletconnect/ethereum-provider": "2.13.1",
"@web3-react/coinbase-wallet": "8.2.3",
"@web3-react/core": "8.2.3",
"@web3-react/metamask": "8.2.4",
"@web3-react/network": "8.2.3",
"@web3-react/types": "8.2.3",
"@web3-react/url": "8.2.3",
"@web3-react/walletconnect-v2": "8.5.1",
"antd": "5.18.0",
"buffer": "6.0.3",
"ethers": "5.7.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-jazzicon": "1.0.4",
"react-scripts": "5.0.1",
"swr": "2.2.5"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@types/jest": "29.5.12",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.3.1",
"typescript": "5.4.5"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"defaults"
],
"development": [
"defaults"
]
}
}