-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "starlink",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx tsx watch server.ts",
"dev:next": "next dev",
"build": "next build",
"start": "npx tsx server.ts",
"test": "vitest run",
"update-gs": "npx tsx scripts/update-ground-stations.ts",
"ingest": "npx tsx scripts/ingest-tles.ts"
},
"dependencies": {
"@duckdb/node-api": "^1.5.0-r.1",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"better-sqlite3": "^12.8.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.8.0",
"satellite.js": "^6.0.2",
"starlink-dish": "^0.2.1",
"three": "^0.183.2",
"tsx": "^4.21.0",
"ws": "^8.19.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.0"
}
}