This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
forked from moonpotdev/moonpot-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.76 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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "moonpot-app",
"homepage": ".",
"version": "0.1.0",
"private": true,
"license": "MIT",
"repository": "moonpotdev/moonpot-app",
"dependencies": {
"@apollo/client": "^3.4.8",
"@coinbase/wallet-sdk": "^3.0.5",
"@download/blockies": "^1.0.3",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/system": "^4.11.3",
"@reduxjs/toolkit": "^1.7.0",
"@walletconnect/web3-provider": "^1.5.2",
"bignumber.js": "^9.0.1",
"clsx": "^1.1.1",
"fathom-client": "^3.2.0",
"graphql": "^15.5.1",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-animate-height": "^2.0.23",
"react-dom": "^17.0.1",
"react-focus-lock": "^2.5.2",
"react-ga": "^3.3.0",
"react-i18next": "^11.10.0",
"react-infinite-scroll-component": "^6.1.0",
"react-media": "^1.10.0",
"react-page-visibility": "^6.4.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-ticker": "^1.3.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.1.5",
"uniqid": "^5.4.0",
"web-vitals": "^0.2.4",
"web3": "^1.7.0",
"web3-core": "^1.7.0",
"web3-eth": "^1.7.0",
"web3-eth-personal": "^1.7.0",
"web3-net": "^1.7.0",
"web3-utils": "^1.7.0",
"web3modal": "^1.9.3"
},
"resolutions": {
"web3": "^1.7.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"prettier:check": "prettier --check src/**/*.{js,json,ts,tsx}",
"prettier:fix": "prettier --write src/**/*.{js,json,ts,tsx}"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react/jsx-no-target-blank": [
"error",
{
"allowReferrer": true
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-page-visibility": "^6.4.1",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"eth-multicall": "^1.3.13",
"husky": "^7.0.1",
"i18next": "^20.3.1",
"i18next-browser-languagedetector": "^6.1.1",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,json,ts,tsx}": "prettier --write"
}
}