-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) 路 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) 路 1.04 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
{
"name": "dev-globe-viz",
"version": "2.0.0",
"type": "module",
"description": "Interactive 3D globe visualization of top GitHub developers",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build-data": "node scripts/build-dataset.js",
"fetch-github": "node scripts/fetch-github.js",
"fetch-stackoverflow": "node scripts/fetch-stackoverflow.js",
"geocode": "node scripts/geocode.js",
"upload-cosmos": "node scripts/upload-cosmosdb.js",
"review-nominations": "node scripts/review-nominations.js",
"seed-emulator": "node scripts/seed-emulator.js"
},
"dependencies": {
"@azure/cosmos": "^4.10.0",
"@vercel/analytics": "^2.0.1",
"@vercel/og": "^0.11.1",
"d3": "^7.9.0",
"dotenv": "^16.4.5",
"jose": "^6.2.4",
"next": "^15.3.0",
"node-fetch": "^3.3.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-globe.gl": "^2.38.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"eslint-config-next": "^15.3.0"
}
}