-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.62 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.62 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "polca-cover-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"prepare": "husky install",
"lint": "eslint '*/**/*.{js,jsx}' --quiet --fix",
"lint:fix": "eslint . --fix=true --ext=js,jsx",
"eject": "react-scripts eject"
},
"dependencies": {
"@biconomy/mexa": "^2.0.24",
"@craco/craco": "^6.2.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/providers": "^5.4.5",
"@fortawesome/fontawesome-free": "^5.15.4",
"@headlessui/react": "^1.4.0",
"@heroicons/react": "^1.0.4",
"@popperjs/core": "^2.9.3",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@uniswap/sdk": "^3.0.3",
"@walletconnect/web3-provider": "^1.7.0",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/types": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.4",
"axios": "^0.21.3",
"bignumber.js": "^9.0.1",
"chart.js": "^3.5.1",
"connected-react-router": "^6.9.1",
"dayjs": "^1.10.7",
"ethereum-multicall": "^2.9.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.4.6",
"firebase": "^9.6.1",
"history": "4.10.1",
"interweave": "^12.8.0",
"javascript-time-ago": "^2.3.10",
"lodash": "^4.17.21",
"ms.macro": "^2.0.0",
"rc-slider": "^9.7.2",
"react": "^17.0.2",
"react-circular-progressbar": "^2.0.4",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-flags-select": "^2.1.2",
"react-infinite-scroll-component": "^6.1.0",
"react-palm": "^3.3.7",
"react-perfect-scrollbar": "^1.5.8",
"react-phone-input-2": "^2.14.0",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select": "^5.1.0",
"react-select-country-list": "^2.2.3",
"react-spinkit": "^3.0.0",
"react-star-ratings": "^2.3.0",
"react-toastify": "^8.0.2",
"react-tooltip": "^4.2.21",
"react-twitter-embed": "^3.0.3",
"redux": "^4.1.1",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"tailwind-scrollbar-hide": "^1.0.3",
"tiny-invariant": "^1.1.0",
"typescript": "^4.4.3",
"uniqid": "^5.4.0",
"web-vitals": "^1.0.1",
"web3": "^1.5.3"
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"postcss": "^7.0.36",
"prettier": "2.3.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.14"
},
"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"
]
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix && git add ."
}
}
}