-
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.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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": "rowbinary-explorer",
"private": true,
"version": "0.0.1",
"description": "Interactive hex viewer for ClickHouse RowBinary and Native wire formats",
"author": "alex-clickhouse <alex.soffronow@clickhouse.com>",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "eslint . && tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"electron:dev": "ELECTRON=true vite dev",
"electron:build": "ELECTRON=true vite build && electron-builder",
"test:e2e": "ELECTRON=true vite build && npx playwright test"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.7",
"react-window": "^1.8.10",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.58.2",
"@testcontainers/clickhouse": "^11.11.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^40.3.0",
"electron-builder": "^26.7.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"testcontainers": "^11.11.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.17"
}
}