-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.95 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.95 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
{
"name": "dotaz",
"version": "0.0.1",
"type": "module",
"description": "Desktop database client built on Electrobun",
"author": "Contember Limited",
"license": "MIT",
"workspaces": [
"src/*"
],
"scripts": {
"start": "vite build && WEBKIT_DISABLE_COMPOSITING_MODE=1 electrobun dev",
"dev": "concurrently \"vite --port 6400\" \"WEBKIT_DISABLE_COMPOSITING_MODE=1 electrobun dev --watch\"",
"build:canary": "vite build && electrobun build --env=canary",
"build:server": "bun scripts/build-server.ts",
"build:docker": "docker build -t dotaz .",
"test": "bun test",
"test:sqlite": "bun test tests/sqlite-smoke.test.ts",
"test:pg": "bun test tests/pg-smoke.test.ts",
"typecheck": "bunx tsc --noEmit",
"dev:web": "concurrently \"bun --watch src/backend-web/server.ts\" \"vite --mode web\"",
"build:web": "vite build --mode web",
"start:web": "bun src/backend-web/server.ts",
"seed:sqlite": "bun scripts/seed/seed-sqlite.ts",
"seed:postgres": "bun scripts/seed/seed-postgres.ts",
"dev:demo": "vite --mode demo",
"build:demo": "bun run seed:sqlite && vite build --mode demo",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "dprint fmt",
"format:check": "dprint check"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/language": "^6.12.0",
"@codemirror/lint": "^6.9.0",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.5",
"@lezer/highlight": "^1.2.0",
"@sqlite.org/sqlite-wasm": "^3.51.2-build6",
"@tanstack/solid-virtual": "^3.13.6",
"codemirror": "^6.0.1",
"electrobun": "1.16.0",
"lucide-solid": "^0.575.0",
"simple-icons": "^16.10.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@faker-js/faker": "^10.3.0",
"@types/bun": "latest",
"concurrently": "^9.1.0",
"dprint": "^0.51.1",
"solid-js": "^1.9.3",
"typescript": "^5.9.3",
"vite": "^6.0.3",
"vite-plugin-solid": "^2.11.0",
"wait-on": "^8.0.0"
}
}