This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
118 lines (118 loc) · 3.25 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
{
"name": "explorer",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@ensdomains/address-encoder": "^0.2.6",
"@ensdomains/ensjs": "^2.0.0",
"@feedback-fish/react": "^1.2.1",
"@helium/address": "^4.6.2",
"@helium/currency": "^4.7.3",
"@helium/http": "^4.7.5",
"@mapbox/mapbox-gl-supported": "^2.0.0",
"@mapbox/mapbox-sdk": "^0.13.0",
"@solana/web3.js": "^1.66.1",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@welldone-software/why-did-you-render": "^6.1.4",
"angry-purple-tiger": "1.0.5",
"antd": "^4.16.7",
"body-parser": "^1.19.0",
"camelcase-keys": "^7.0.0",
"chart.js": "^3.7.1",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"date-fns": "^2.16.1",
"export-to-csv": "^0.2.1",
"express": "^4.17.1",
"focus-trap-react": "^8.7.0",
"fuse.js": "^6.4.6",
"geojson": "^0.5.0",
"geojson2h3": "^1.1.1",
"h3-js": "^3.7.2",
"javascript-time-ago": "^2.3.8",
"lodash": "^4.17.21",
"mapbox-gl": "2.7.0",
"next": "^12.1.0",
"node-fetch": "^3.2.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-async-hook": "^4.0.0",
"react-async-hooks": "^1.0.3",
"react-chartjs-2": "^4.0.0",
"react-countdown": "^2.3.2",
"react-country-flag": "^3.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-identicon-variety-pack": "https://github.com/allenan/react-identicon-variety-pack.git",
"react-infinite-scroll-hook": "^4.0.1",
"react-infinite-scroller": "^1.2.4",
"react-mapbox-gl": "^5.1.1",
"react-qr-code": "^2.0.0",
"react-responsive": "^9.0.0-beta.6",
"react-router-dom": "^5.3.3",
"react-router-i18n": "^1.1.0",
"react-time-ago": "^7.0.0",
"react-timestamp": "^5.1.0",
"recharts": "^2.0.10",
"swr": "^1.2.1",
"use-debounce": "^7.0.0",
"use-persisted-state": "^0.3.3"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"lint": "next lint",
"start": "NODE_ENV=production node server.js",
"pretty": "prettier --write \"./**/*.{js,jsx,json,css}\"",
"job": "eval $(cat .env) node",
"prepare": "npx husky install"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
}
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:@next/next/recommended"
],
"rules": {
"react/react-in-jsx-scope": "off",
"jsx-a11y/anchor-is-valid": "off",
"@next/next/no-img-element": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.41",
"@types/react": "18.0.1",
"autoprefixer": "^10.3.1",
"csv-loader": "^3.0.3",
"eslint": "^8.13.0",
"eslint-config-next": "^12.1.0",
"eslint-config-react-app": "^7.0.0",
"husky": "^7.0.1",
"postcss": "^8.3.0",
"prettier": "2.5.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"pretty-quick": "^3.1.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.7.3"
}
}