forked from lumenmap/lumenmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "lumenmap",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lumenmap/lumenmap.git"
},
"homepage": "https://github.com/lumenmap/lumenmap",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"typecheck": "tsc --noEmit",
"test": "tsx --test lib/*.test.ts lib/**/*.test.ts app/api/activity/route.test.ts app/api/v1/timeseries/route.test.ts",
"protect:main": "node scripts/configure-main-protection.mjs",
"sync:directory": "node scripts/sync-stellar-directory.mjs",
"test:hubble": "node scripts/test-hubble-queries.mjs",
"test:hubble:registry": "node scripts/test-query-registry.mjs",
"test:mapper": "npx tsx tests/test-destination-mapper.mjs",
"test:usdc-volume": "node scripts/test-usdc-volume.mjs",
"test:usdc": "npx tsx scripts/test-usdc-metric.mjs",
"test:issues": "npx tsx scripts/validate-yaml-templates.mjs",
"smoke": "node scripts/smoke-check.mjs",
"test:e2e:ui": "playwright test --ui",
"test:freshness": "node --test scripts/test-freshness.mjs",
"test:visual": "npx tsx scripts/test-visual-regression.mjs",
"test:visual:update": "npx tsx scripts/test-visual-regression.mjs --update",
"test:mappings": "npx tsx scripts/test-category-mappings.mjs",
"test:coverage": "node scripts/test-coverage-calculation.mjs",
"test:unit": "vitest run",
"test:fixtures": "npx tsx scripts/verify-fixture-mode.ts"
},
"dependencies": {
"@google-cloud/bigquery": "^8.3.1",
"@tanstack/react-query": "^5.101.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-hierarchy": "^3.1.2",
"date-fns": "^4.4.0",
"lucide-react": "^1.23.0",
"next": "16.2.12",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.10.1",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.52",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@types/d3-hierarchy": "^3.1.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"esbuild": "^0.28.1",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"jsdom": "^22.1.0",
"tailwindcss": "^4",
"tsx": "^4.23.5",
"typescript": "^5",
"vitest": "^4.1.10"
}
}