forked from benlikescode/geohub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.62 KB
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
{
"name": "geohub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='-r ./scripts/node-slowbuffer-shim.js' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed:dev": "node scripts/seed-dev-data.js",
"maps:import-equitable": "node scripts/import-equitable-world-map.js",
"maps:split-equitable": "node scripts/split-equitable-into-maps.js --layout weighted --replace-existing",
"maps:export-bundle": "node scripts/export-maps-for-repo.mjs",
"maps:import-bundle": "node scripts/import-maps-bundle.mjs",
"users:backfill-legacy-maps-key": "node scripts/backfill-legacy-maps-api-key.js",
"test": "jest"
},
"dependencies": {
"@deck.gl/core": "^8.9.22",
"@deck.gl/google-maps": "^8.9.22",
"@deck.gl/layers": "^8.9.22",
"@heroicons/react": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-select": "^1.2.2",
"@reduxjs/toolkit": "^1.8.2",
"@sendgrid/mail": "^7.7.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/turf": "^6.5.0",
"@types/google.maps": "^3.51.0",
"@vercel/analytics": "2.0.1",
"allotment": "^1.19.2",
"bcryptjs": "^2.4.3",
"body-scroll-lock": "^4.0.0-beta.0",
"cryptr": "^6.2.0",
"dotenv": "^10.0.0",
"file-saver": "^2.0.5",
"google-map-react": "2.2.5",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mongodb": "6",
"next": "14.2.35",
"next-auth": "4.24.15",
"pusher": "^5.3.3",
"pusher-js": "^8.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.4.0",
"react-infinite-scroll-component": "^6.1.0",
"react-is": "18.3.1",
"react-linkify": "^1.0.0-alpha",
"react-redux": "^8.0.2",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "^14.2.1",
"@types/bcryptjs": "^2.4.2",
"@types/body-scroll-lock": "^3.1.0",
"@types/file-saver": "^2.0.5",
"@types/google-map-react": "^2.1.7",
"@types/jest": "^27.4.1",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.7",
"@types/react": "18.3.26",
"@types/react-dom": "18.3.7",
"@types/react-linkify": "^1.0.1",
"@types/styled-components": "^5.1.26",
"eslint": "8.57.1",
"eslint-config-next": "14.2.35",
"eslint-plugin-unused-imports": "3.2.0",
"jest": "^27.5.1",
"typescript": "5.9.3"
},
"resolutions": {
"@types/react": "18.3.26",
"@types/react-dom": "18.3.7"
}
}