-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.67 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
{
"name": "apscan",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"dependencies": {
"@ant-design/maps": "^1.0.4",
"@chakra-ui/icons": "^2.0.13",
"@chakra-ui/react": "^2.2.9",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@pancakeswap/aptos-swap-sdk": "^0.0.2",
"@pancakeswap/awgmi": "^0.0.10",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/react": "^7.16.0",
"@sentry/tracing": "^7.16.0",
"@tanstack/react-table": "^8.5.13",
"@vanilla-extract/babel-plugin": "^1.2.0",
"@vanilla-extract/css": "^1.9.0",
"@vanilla-extract/webpack-plugin": "^2.1.12",
"antd": "^4.23.0",
"aptos": "^1.3.16",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"camelcase-keys": "^8.0.2",
"copy-to-clipboard": "^3.3.2",
"dayjs": "^1.11.5",
"framer-motion": "^7.5.3",
"highcharts": "^10.3.2",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
"inter-ui": "^3.19.3",
"ipaddr.js": "^2.0.1",
"leaflet": "^1.9.2",
"leaflet-gesture-handling": "^1.2.2",
"memoize-one": "^6.0.0",
"numbro": "^2.3.6",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-countup": "^6.3.2",
"react-dom": "^18.2.0",
"react-ga4": "^1.4.1",
"react-helmet-async": "^1.3.0",
"react-i18next": "^11.18.5",
"react-json-view": "^1.21.3",
"react-leaflet": "^4.1.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-table": "^7.8.0",
"recharts": "^2.1.14",
"redux-localstorage-simple": "^2.5.1",
"simplebar-react": "^2.4.1",
"styled-components": "^5.3.6",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "react-scripts test",
"lint": "pnpm eslint .",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\""
},
"devDependencies": {
"@craco/craco": "^6.4.5",
"@emotion/babel-plugin": "^11.10.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/leaflet": "^1.9.0",
"@types/node": "^17.0.45",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-table": "^7.7.12",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vanilla-extract/dynamic": "^2.0.2",
"@vercel/node": "^2.5.26",
"customize-cra": "^1.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"react-app-rewired": "^2.2.1",
"react-dev-utils": "^12.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"
]
}
}