forked from Hexzilla/buddievers-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.75 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "buddies-web",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"format": "prettier --write src",
"lint": "eslint --ext js,jsx,ts,tsx --fix",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@ethersproject/address": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.123",
"@mui/material": "^5.11.13",
"@react-three/drei": "^9.57.3",
"@react-three/fiber": "^8.12.0",
"@reduxjs/toolkit": "^1.9.3",
"@talismn/web3react-v6-connector": "^6.0.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.18",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.2.9",
"@web3-react/walletconnect-connector": "^6.2.13",
"axios": "^1.3.4",
"beautiful-react-hooks": "^4.3.0",
"big.js": "^6.2.1",
"date-fns": "^2.29.3",
"decimal.js-light": "^2.5.1",
"ethereum-multicall": "^2.16.1",
"file-type": "^16.5.4",
"graphql": "^16.6.0",
"graphql-request": "^5.2.0",
"jazzicon": "^1.5.0",
"jsbi": "^4.3.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-multi-carousel": "^2.8.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.2",
"redux-localstorage-simple": "^2.5.1",
"sass": "^1.59.3",
"three": "^0.162.0",
"toformat": "^2.0.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/big.js": "^6.1.6",
"@types/react-router-dom": "^5.3.3",
"@types/three": "^0.149.0",
"@types/yup": "^0.32.0",
"husky": "^8.0.3",
"yup": "^1.0.2"
},
"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"
]
}
}