forked from thales-markets/thales-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.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
129
130
131
132
{
"name": "thales-dapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@1inch/limit-order-protocol": "^1.5.0",
"@datapunt/matomo-tracker-react": "^0.5.1",
"@eth-optimism/contracts": "^0.5.6",
"@google-cloud/translate": "^6.3.0",
"@ledgerhq/iframe-provider": "^0.4.2",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"@metamask/detect-provider": "^1.2.0",
"@rainbow-me/rainbowkit": "^0.12.7",
"@reduxjs/toolkit": "^1.5.0",
"@snapshot-labs/snapshot.js": "^0.4.40",
"@socket.tech/plugin": "^1.0.2",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.1",
"@types/jest": "^26.0.20",
"axios": "^0.21.1",
"babel-preset-react-app": "^10.0.1",
"bignumber.js": "^9.0.1",
"browserslist": "^4.19.1",
"coingecko-api-v3": "^0.0.23",
"date-fns": "^2.19.0",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "5.7.2",
"graphql-request": "^3.6.1",
"hammerjs": "^2.0.8",
"history": "^4.10.1",
"https": "^1.0.0",
"i18next": "^19.9.1",
"i18next-browser-languagedetector": "^6.0.1",
"lodash": "^4.17.21",
"lottie-react": "^2.3.1",
"node-sass": "4.14.1",
"numbro": "^2.3.2",
"query-string": "^7.0.1",
"react": "^17.0.1",
"react-country-flag": "^2.3.1",
"react-datepicker": "^3.6.0",
"react-dom": "^17.0.1",
"react-grid-layout": "^1.2.4",
"react-i18next": "^11.8.8",
"react-iframe": "^1.8.0",
"react-outside-click-handler": "^1.3.0",
"react-responsive-carousel": "^3.2.23",
"react-query": "^3.12.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.3",
"react-scripts": "4.0.3",
"react-select": "^4.2.1",
"react-table": "^7.7.0",
"react-toastify": "^8.2.0",
"react-unity-webgl": "^8.6.1",
"recharts": "^2.5.0",
"redux": "^4.0.5",
"remarkable": "^2.0.1",
"rss-parser": "^3.12.0",
"styled-components": "^5.2.3",
"thales-data": "^1.2.45",
"three": "^0.129.0",
"typescript": "^4.5.5",
"universal-cookie": "^4.0.4",
"wagmi": "^0.12.10",
"web-vitals": "^1.1.0",
"web3": "^1.3.6"
},
"devDependencies": {
"@types/hammerjs": "^2.0.41",
"@types/lodash": "^4.14.168",
"@types/node": "^12.20.4",
"@types/react": "^17.0.2",
"@types/react-datepicker": "^3.1.7",
"@types/react-dom": "^17.0.1",
"@types/react-grid-layout": "^1.1.1",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/react-router-hash-link": "^2.4.5",
"@types/react-select": "^4.0.13",
"@types/react-table": "^7.7.3",
"@types/remarkable": "^2.0.3",
"@types/styled-components": "^5.1.9",
"@types/three": "^0.128.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.28.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"terser": "^3.14.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix",
"git add"
],
"**/*.{js,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}