-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
112 lines (112 loc) · 3.06 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
109
110
111
112
{
"name": "otrust",
"version": "0.1.0",
"private": true,
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!./src/utils/device.js",
"!./src/theme/colors.js",
"!./src/components/Chart/Style.js"
],
"coverageReporters": [
"text-summary",
"json",
"html",
"lcovonly"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"@apollo/client": "^3.4.7",
"@cosmjs/launchpad": "^0.24.1",
"@ethersproject/address": "^5.0.10",
"@ethersproject/bignumber": "^5.1.1",
"@ethersproject/contracts": "^5.0.11",
"@ethersproject/providers": "^5.0.21",
"@ethersproject/units": "^5.0.10",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@use-it/interval": "^1.0.0",
"@web3-react/core": "^6.1.1",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/ledger-connector": "^6.1.9",
"@web3-react/network-connector": "^6.1.3",
"@web3-react/walletconnect-connector": "^6.1.9",
"@web3-react/walletlink-connector": "^6.1.9",
"apollo-boost": "^0.4.9",
"bignumber.js": "^9.0.1",
"cosmos-lib": "^1.1.0",
"d3": "^6.5.0",
"ethers": "^5.3.0",
"graphql": "^15.5.1",
"intro.js": "^4.1.0",
"intro.js-react": "^0.4.0",
"lodash": "^4.17.21",
"mock-web3-provider": "^1.0.0",
"polished": "^4.1.1",
"react": "^17.0.1",
"react-cookie": "^4.1.1",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.3",
"react-modal": "^3.12.1",
"react-scripts": "4.0.3",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.2.1",
"swr": "^0.4.2",
"web-vitals": "^0.2.4",
"web3": "^1.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^12.6.3",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest-dom": "^3.6.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"prettier": "^2.3.1",
"react-test-renderer": "^17.0.1"
},
"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"
]
}
}