-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.2 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
{
"name": "sv2-ui",
"version": "0.1.0",
"description": "Unified monitoring dashboard for the SRI mining stack",
"private": true,
"type": "module",
"workspaces": [
"server",
"shared"
],
"scripts": {
"dev": "concurrently --kill-signal SIGTERM --kill-others-on-fail \"vite\" \"npm run dev --prefix server\"",
"dev:ui": "vite",
"dev:server": "npm run dev --prefix server",
"build": "tsc && vite build",
"build:server": "npm run build --prefix server",
"build:all": "npm run build && npm run build:server",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0",
"test": "node --test --import tsx src/**/*.test.ts",
"test:server": "npm run test --prefix server",
"test:all": "npm run test && npm run test:server",
"typecheck": "tsc --noEmit",
"generate:types": "orval"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.62.0",
"@sv2-ui/shared": "^0.1.0",
"bitcoinjs-lib": "^7.0.1",
"bs58check": "^4.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.14.1",
"tailwind-merge": "^2.6.0",
"tiny-secp256k1": "^2.2.4",
"wouter": "^3.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.10.2",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.3",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"orval": "^8.12.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.56.1",
"vite": "^6.0.3",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/stratum-mining/sv2-ui.git"
},
"keywords": [
"stratum",
"sv2",
"bitcoin",
"mining",
"monitoring",
"dashboard"
],
"license": "MIT OR Apache-2.0"
}