-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 982 Bytes
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
{
"name": "squawk",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev -p 7700",
"build": "next build",
"start": "next start -p 7700",
"worker": "tsx watch worker/index.ts",
"worker:start": "tsx worker/index.ts",
"start:prod": "concurrently -n next,worker -c blue,yellow \"next start\" \"tsx worker/index.ts\""
},
"dependencies": {
"@deck.gl/aggregation-layers": "^9",
"@deck.gl/core": "^9",
"@deck.gl/layers": "^9",
"@deck.gl/react": "^9",
"better-sqlite3": "^11",
"echarts": "^5",
"echarts-for-react": "^3",
"maplibre-gl": "^4",
"next": "^15",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-map-gl": "^8"
},
"devDependencies": {
"@types/better-sqlite3": "^7",
"@types/node": "^20",
"@types/react": "19.2.17",
"@types/react-dom": "^19.2.3",
"concurrently": "^10.0.3",
"tsx": "^4",
"typescript": "^5"
}
}