-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.88 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
{
"name": "altinity-sql-browser",
"private": true,
"version": "0.6.0",
"description": "A self-contained, OAuth-gated SQL browser for any ClickHouse cluster. Vanilla ES modules, served from ClickHouse itself as one HTML file with zero third-party requests.",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"prebuild": "npm run check:schemas",
"build": "node build/build.mjs",
"size-report": "node build/size-report.mjs",
"check:arch": "node build/check-boundaries.mjs",
"pretest": "npm run check:schemas && npm run check:arch && npm run check:types",
"test": "TZ=America/New_York vitest run --coverage --config tests/vitest.config.ts",
"test:watch": "TZ=America/New_York vitest --config tests/vitest.config.ts",
"test:e2e": "playwright test",
"generate:schemas": "node build/compile-json-schemas.mjs",
"check:schemas": "node build/compile-json-schemas.mjs --check",
"check:types": "tsc --noEmit",
"dev": "node build/build.mjs && python3 -m http.server -d dist 8900",
"local": "node build/build.mjs && python3 build/local.py"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@vitest/coverage-v8": "^2.1.8",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"esbuild": "^0.28.1",
"happy-dom": "^15.11.0",
"typescript": "^7.0.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.12.4",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.0",
"@codemirror/view": "^6.43.4",
"@dagrejs/dagre": "^3.0.0",
"@lezer/highlight": "^1.2.3",
"@preact/signals-core": "^1.14.3",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.4.0"
}
}