-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
112 lines (112 loc) · 3.49 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": "thales-sport-markets",
"version": "0.1.0",
"private": true,
"dependencies": {
"@biconomy/account": "4.1.1",
"@google-cloud/translate": "^6.3.0",
"@particle-network/auth-core-modal": "^1.4.0",
"@rainbow-me/rainbowkit": "^2.0.0",
"@reduxjs/toolkit": "^1.7.2",
"@tanstack/react-query": "^5.25.0",
"@tanstack/react-table": "^8.17.3",
"axios": "^1.7.4",
"buffer": "^6.0.3",
"bytes32": "^0.0.3",
"date-fns": "^2.28.0",
"dompurify": "^3.0.8",
"history": "^4.10.1",
"html-to-image": "^1.11.11",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^7.2.0",
"lodash": "^4.17.21",
"lottie-react": "^2.3.1",
"ordinal": "^1.0.3",
"plausible-tracker": "^0.3.8",
"rc-tooltip": "^5.1.1",
"react": "18.2.0",
"react-custom-scrollbars-2": "^4.5.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.12",
"react-helmet": "^6.1.0",
"react-horizontal-scrolling-menu": "^7.0.0",
"react-i18next": "^14.0.5",
"react-lazyload": "^3.2.1",
"react-loader-spinner": "^5.1.4",
"react-modal": "^3.14.4",
"react-qr-code": "^2.0.11",
"react-redux": "^7.2.2",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^5.2.0",
"react-select": "^5.8.0",
"react-swipeable": "^7.0.1",
"react-toastify": "^8.2.0",
"recharts": "^2.1.16",
"redux": "^4.1.2",
"styled-components": "^5.3.3",
"thales-data": "^3.0.19",
"thales-utils": "^1.1.7",
"typescript": "^5.0.4",
"viem": "^2.7.19",
"wagmi": "^2.11.2",
"web3": "^1.7.4"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.59.19",
"@types/dompurify": "^3.0.5",
"@types/history": "^4.7.11",
"@types/lodash": "^4.14.178",
"@types/node": "^20.3.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-lazyload": "^3.2.3",
"@types/react-modal": "^3.13.1",
"@types/react-router-dom": "^5.3.3",
"@types/react-window": "^1.8.8",
"@types/styled-components": "^5.1.23",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "^4.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"vite": "^5.2.6",
"vite-plugin-checker": "^0.7.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"scripts": {
"start": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview"
},
"browserslist": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix",
"git add"
],
"**/*.{js,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
}
}