-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.01 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
{
"name": "nbim-map",
"version": "0.1.0",
"private": true,
"description": "Interactive map visualization of NBIM (Norway's sovereign wealth fund) real estate investments across cities and countries",
"keywords": [
"map",
"real-estate",
"investment",
"visualization",
"leaflet",
"next.js"
],
"homepage": "https://github.com/hakonno/nbim-map",
"bugs": "https://github.com/hakonno/nbim-map/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hakonno/nbim-map.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "playwright test",
"dataset:activate": "node scripts/activate-dataset.mjs",
"fetch:attom": "node --env-file=.env.local scripts/fetch-attom-data.mjs",
"pipeline": "npm run pipeline:properties && npm run pipeline:cities",
"pipeline:cities": "node scripts/build-cities.mjs",
"pipeline:properties": "node scripts/pipeline.mjs",
"validate:geocoding": "node scripts/validate-geocoding.mjs",
"fix:geocoding": "node scripts/fix-geocode-outliers.mjs",
"fix:geocoding:apply": "node scripts/fix-geocode-outliers.mjs --apply",
"fix:geocoding:apply-all": "node scripts/fix-geocode-outliers.mjs --apply --geocode-missing-zips",
"pipeline:full": "npm run pipeline:properties && npm run validate:geocoding && npm run fix:geocoding:apply-all && npm run pipeline:cities"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"leaflet": "^1.9.4",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-leaflet": "^5.0.0",
"react-leaflet-cluster": "^4.1.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@types/leaflet": "^1.9.21",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}