forked from koala73/worldmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.99 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.99 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
{
"name": "world-monitor",
"private": true,
"version": "2.1.4",
"type": "module",
"scripts": {
"dev": "vite",
"dev:tech": "VITE_VARIANT=tech vite",
"build": "tsc && vite build",
"build:full": "VITE_VARIANT=full tsc && VITE_VARIANT=full vite build",
"build:tech": "VITE_VARIANT=tech tsc && VITE_VARIANT=tech vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test:e2e:full": "VITE_VARIANT=full playwright test",
"test:e2e:tech": "VITE_VARIANT=tech playwright test",
"test:e2e": "npm run test:e2e:full && npm run test:e2e:tech",
"test:e2e:visual:full": "VITE_VARIANT=full playwright test -g \"matches golden screenshots per layer and zoom\"",
"test:e2e:visual:tech": "VITE_VARIANT=tech playwright test -g \"matches golden screenshots per layer and zoom\"",
"test:e2e:visual": "npm run test:e2e:visual:full && npm run test:e2e:visual:tech",
"test:e2e:visual:update:full": "VITE_VARIANT=full playwright test -g \"matches golden screenshots per layer and zoom\" --update-snapshots",
"test:e2e:visual:update:tech": "VITE_VARIANT=tech playwright test -g \"matches golden screenshots per layer and zoom\" --update-snapshots",
"test:e2e:visual:update": "npm run test:e2e:visual:update:full && npm run test:e2e:visual:update:tech"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/d3": "^7.4.3",
"@types/maplibre-gl": "^1.13.2",
"@types/topojson-client": "^3.1.5",
"@types/topojson-specification": "^1.0.5",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"ws": "^8.19.0"
},
"dependencies": {
"@deck.gl/core": "^9.2.6",
"@deck.gl/geo-layers": "^9.2.6",
"@deck.gl/layers": "^9.2.6",
"@deck.gl/mapbox": "^9.2.6",
"@upstash/redis": "^1.36.1",
"@vercel/analytics": "^1.6.1",
"@xenova/transformers": "^2.17.2",
"d3": "^7.9.0",
"deck.gl": "^9.2.6",
"maplibre-gl": "^5.16.0",
"onnxruntime-web": "^1.23.2",
"topojson-client": "^3.1.0",
"youtubei.js": "^16.0.1"
}
}