-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
128 lines (128 loc) · 3.21 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "tesseract-app",
"version": "1.0.0",
"private": true,
"homepage": "https://tesr.finance",
"dependencies": {
"@ethersproject/providers": "^5.4.4",
"@lingui/react": "^3.10.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.4",
"axios": "^0.19.2",
"bootstrap": "^4.5.0",
"ethers": "^5.4.5",
"ethers-multicall": "^0.2.1",
"js-big-decimal": "^1.3.4",
"moment": "^2.29.1",
"pre-commit": "^1.2.2",
"rc-slider": "^9.7.2",
"react": "^17.0.1",
"react-bootstrap": "^1.5.2",
"react-datepicker": "^4.1.1",
"react-dom": "^17.0.1",
"react-loading-skeleton": "^2.2.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-toastify": "^8.0.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"sass": "1.32.12",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"web3": "^1.2.9"
},
"devDependencies": {
"@lingui/cli": "^3.10.2",
"@lingui/macro": "^3.10.2",
"@typechain/ethers-v5": "^7.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-datepicker": "^4.1.3",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.7",
"gh-pages": "^3.2.3",
"typechain": "^5.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"lang:extract": "lingui extract",
"lang:extract:clean": "lingui extract --clean",
"lang:compile": "lingui compile",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"sc:extract": "typechain --target=ethers-v5 './src/shared/contracts/abi/*.json' --out-dir './src/shared/contracts'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-console": "warn",
"no-constant-condition": "off",
"no-dupe-else-if": "off",
"no-empty": "warn",
"no-extra-boolean-cast": "off",
"no-inner-declarations": "off",
"no-obj-calls": "off",
"no-sparse-arrays": "off",
"no-unreachable": "warn",
"indent": [
"warn",
2,
{
"SwitchCase": 1
}
],
"quotes": [
"warn",
"double"
],
"semi": [
"warn",
"always"
],
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"linebreak-style": [
"error",
"unix"
],
"@typescript-eslint/adjacent-overload-signatures": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/no-var-requires": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pre-commit": [
"lint"
]
}