-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.55 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
{
"name": "game-worker-solidarity-project",
"version": "0.1.0",
"private": true,
"cacheDirectories": [
"node_modules/",
".next/cache/"
],
"scripts": {
"dev": "next dev",
"build": "next build && next-sitemap",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"generateschema": "ts-to-zod data/types.ts data/schema.ts",
"test": "jest --watch"
},
"dependencies": {
"@headlessui/react": "^1.3.0",
"@heroicons/react": "^1.0.1",
"@math.gl/web-mercator": "^3.4.3",
"@react-hook/window-scroll": "^1.3.0",
"@tailwindcss/typography": "^0.4.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@turf/bbox": "^6.4.0",
"@turf/combine": "^6.4.0",
"@turf/helpers": "^6.4.0",
"@urbica/react-map-gl": "^1.14.3",
"@urbica/react-map-gl-cluster": "^0.2.0",
"@visx/visx": "^1.12.0",
"a11y-react-emoji": "^1.1.3",
"airtable": "^0.11.1",
"autoprefixer": "^10.2.6",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-polished": "^1.1.0",
"classnames": "^2.3.1",
"cloudinary": "^1.33.0",
"cors": "^2.8.5",
"country-coords": "^1.0.0",
"country-flag-emoji": "^1.0.3",
"country-to-bbox": "https://github.com/austinkelmore/country-to-bbox/tarball/patch-1",
"d3": "6",
"date-fns": "^2.22.1",
"env-var": "^7.0.1",
"fuse.js": "^6.4.6",
"highlight-words-core": "^1.2.2",
"jest": "^27.4.5",
"jsonfeed-to-rss": "^3.0.5",
"jsonpatch": "^3.0.1",
"just-diff": "^3.1.1",
"lodash.groupby": "^4.6.0",
"lodash.isequal": "^4.5.0",
"mapbox-gl": "^2.3.1",
"markdown-it": "^12.0.6",
"next": "12",
"next-seo": "^4.24.0",
"next-sitemap": "^1.6.108",
"next-use-contextual-routing": "^2.0.0",
"pluralize": "^8.0.0",
"polished": "^4.1.3",
"postcss": "^8.3.0",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.17.0",
"react-konami-code": "^2.2.2",
"react-spring": "^9.2.3",
"react-test-renderer": "^17.0.2",
"remove-markdown": "^0.3.0",
"scroll-into-view": "^1.16.0",
"supercluster": "^7.1.3",
"swr": "^0.5.6",
"tailwindcss": "^2.2.4",
"twin.macro": "^2.5.0",
"typescript": "^4.3.2",
"use-debounce": "^7.0.0",
"zod": "^3.2.0"
},
"devDependencies": {
"@types/d3": "^6.7.0",
"@types/mapbox-gl": "^2.3.3",
"@types/markdown-it": "^12.0.1",
"@types/react": "^17.0.9",
"@types/react-highlight-words": "^0.16.2",
"@types/supercluster": "^5.0.3",
"ts-to-zod": "^3.1.3"
}
}