forked from helium/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.45 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
{
"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/crypto": "^3.1.0",
"@helium/currency": "^3.25.1",
"@helium/http": "^3.63.0",
"@mapbox/mapbox-gl-supported": "^2.0.0",
"@mapbox/mapbox-sdk": "^0.13.0",
"@next/bundle-analyzer": "^11.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@welldone-software/why-did-you-render": "^6.1.4",
"algoliasearch": "^4.10.3",
"angry-purple-tiger": "1.0.5",
"antd": "^4.16.7",
"aws-sdk": "^2.948.0",
"body-parser": "^1.19.0",
"camelcase-keys": "^7.0.0",
"chart.js": "^3.6.2",
"classnames": "^2.2.6",
"color-hash": "^2.0.1",
"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.3.1",
"next": "^11.1.3",
"next-images": "^1.7.0",
"node-fetch": "^2.6.1",
"nprogress": "^0.2.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-async-hook": "^3.6.2",
"react-async-hooks": "^1.0.3",
"react-chartjs-2": "^4.0.0",
"react-countdown": "^2.3.2",
"react-country-flag": "^2.3.1",
"react-dom": "^17.0.2",
"react-grid-system": "^7.1.2",
"react-helmet": "^6.1.0",
"react-hotkeys": "^2.0.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": "^8.2.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.2.0",
"react-router-ga": "^1.2.3",
"react-router-i18n": "^1.1.0",
"react-scripts": "4.0.3",
"react-social-icons": "^5.5.1",
"react-textfit": "^1.1.1",
"react-time-ago": "^7.0.0",
"react-timestamp": "^5.1.0",
"react-typekit": "^1.1.4",
"recharts": "^2.0.10",
"swr": "^0.5.6",
"use-debounce": "^7.0.0",
"use-deep-compare-effect": "^1.6.1",
"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",
"rules": {
"react/react-in-jsx-scope": "off",
"jsx-a11y/anchor-is-valid": "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": {
"autoprefixer": "^10.3.1",
"eslint-config-next": "^11.0.1",
"husky": "^7.0.1",
"postcss": "^8.3.0",
"prettier": "2.3.2",
"pretty-quick": "^3.1.0",
"tailwindcss": "^2.2.4"
}
}