-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@origintrail-official/dkg-node-ui",
"version": "10.0.5",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node -e \"const fs=require('fs'); ['dist','tsconfig.tsbuildinfo'].forEach((p)=>fs.rmSync(p,{recursive:true,force:true}))\" && tsc",
"build:ui": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vite build",
"build:full": "pnpm build && pnpm build:ui",
"dev:ui": "vite",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:devnet-local": "cross-env PW_DEVNET_LOCAL=1 playwright test e2e/specs/devnet-local",
"test:e2e:hw-mock": "playwright test --config playwright.hw-mock.config.ts",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"benchmark:stage5": "tsx scripts/stage5-scale-benchmark.mts",
"benchmark:stage6": "tsx scripts/stage6-delta-benchmark.mts",
"clean": "node -e \"const fs=require('fs'); ['dist','tsconfig.tsbuildinfo'].forEach((p)=>fs.rmSync(p,{recursive:true,force:true}))\""
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/core": "^2.8.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.219.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.219.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-metrics": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"@opentelemetry/semantic-conventions": "^1.41.1",
"@openuidev/react-lang": "^0.2.3",
"@origintrail-official/dkg-core": "workspace:*",
"@origintrail-official/dkg-graph-viz": "workspace:*",
"better-sqlite3": "12.11.1",
"lucide-react": "^1.14.0",
"react-dropzone": "^15.0.0",
"react-markdown": "^10.1.0",
"react-textarea-autosize": "^8.5.9",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.0.2",
"viem": "^2.53.1",
"zod": "^3.25.76",
"zustand": "^5.0.12"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^6",
"@vitest/coverage-v8": "^4.0.18",
"cross-env": "^10.1.0",
"happy-dom": "20.8.9",
"react": "^19",
"react-dom": "^19",
"react-router-dom": "^7",
"recharts": "^2",
"three": "^0.184.0",
"typescript": "^5.7",
"vite": "^8",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"dist-ui",
"README.md",
"LICENSE"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OriginTrail/dkg.git",
"directory": "packages/node-ui"
}
}