-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.17 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": "igain-irs",
"version": "0.1.2",
"private": true,
"dependencies": {
"@binance-chain/bsc-connector": "^1.0.0",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.1",
"@chakra-ui/theme": "^1.12.1",
"@craco/craco": "^6.4.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/montserrat": "^4.5.1",
"@pelith/ethers-multicall": "0.2.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.flatten": "^4.4.6",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-gtm-module": "^2.0.1",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@types/react-table": "^7.7.8",
"@uauth/js": "^1.1.0",
"@uauth/web3modal": "^1.1.0",
"@walletconnect/web3-provider": "^1.7.8",
"ethers": "^5.5.4",
"framer-motion": "^4",
"jsbi": "^4.1.0",
"kaktana-react-lightweight-charts": "^2.0.0",
"lodash.chunk": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"react": "^17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-gtm-module": "^2.0.11",
"react-router": "^5.2.1",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"react-showdown": "^2.3.1",
"react-table": "^7.7.0",
"react-toastify": "^8.1.0",
"recharts": "^2.1.6",
"swr": "^1.0.1",
"typescript": "^4.4.4",
"web-vitals": "^2.1.4",
"web3modal": "1.9.6"
},
"scripts": {
"start": "craco start",
"start:prod": "dotenv -e .env.production craco start",
"build": "craco build",
"build:dev": "dotenv -e .env.development craco build",
"test": "craco test",
"eject": "craco eject",
"lint": "npx eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "npx eslint --fix './src/**/*.{ts,tsx,js,jsx}'",
"postinstall": "patch-package"
},
"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": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"devDependencies": {
"@typechain/ethers-v5": "^8.0.2",
"@typechain/hardhat": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"dotenv-cli": "^4.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.2.5",
"lint-staged": "^11.1.2",
"patch-package": "^6.4.7",
"prettier": "^2.3.2",
"prettier-eslint": "^13.0.0",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^17.0.2",
"typechain": "^6.0.0"
}
}