-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.84 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.84 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
{
"name": "global-intel",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"lint:md": "markdownlint-cli2 '**/*.md'",
"dev": "vite",
"build": "tsc && vite build",
"build:full": "tsc && vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test:e2e:full": "playwright test",
"test:e2e": "npm run test:e2e:full",
"test:data": "node --test tests/*.test.mjs",
"test:sidecar": "node --test api/_cors.test.mjs api/youtube/embed.test.mjs api/cyber-threats.test.mjs",
"test:e2e:visual:full": "playwright test -g \"matches golden screenshots per layer and zoom\"",
"test:e2e:visual": "npm run test:e2e:visual:full",
"test:e2e:visual:update:full": "playwright test -g \"matches golden screenshots per layer and zoom\" --update-snapshots",
"test:e2e:visual:update": "npm run test:e2e:visual:update:full"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/d3": "^7.4.3",
"@types/maplibre-gl": "^1.13.2",
"@types/supercluster": "^7.1.3",
"@types/topojson-client": "^3.1.5",
"@types/topojson-specification": "^1.0.5",
"markdownlint-cli2": "^0.20.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"ws": "^8.19.0"
},
"dependencies": {
"@deck.gl/aggregation-layers": "^9.2.6",
"@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",
"@sentry/browser": "^10.39.0",
"@upstash/redis": "^1.36.1",
"@vercel/analytics": "^1.6.1",
"@xenova/transformers": "^2.17.2",
"d3": "^7.9.0",
"deck.gl": "^9.2.6",
"i18next": "^25.8.10",
"i18next-browser-languagedetector": "^8.2.1",
"maplibre-gl": "^5.16.0",
"onnxruntime-web": "^1.23.2",
"supercluster": "^8.0.1",
"topojson-client": "^3.1.0",
"youtubei.js": "^16.0.1"
}
}