-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.04 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": "electrobun prepare && vite build && WEBKIT_DISABLE_COMPOSITING_MODE=1 electrobun dev",
"dev": "electrobun prepare && concurrently \"vite --port 6400\" \"WEBKIT_DISABLE_COMPOSITING_MODE=1 electrobun dev --watch\"",
"build:canary": "electrobun prepare && 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": "electrobun prepare && 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.20.2",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.6",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.42.0",
"@lezer/highlight": "^1.2.0",
"@sqlite.org/sqlite-wasm": "^3.53.0-build1",
"@tanstack/solid-virtual": "^3.13.24",
"codemirror": "^6.0.1",
"lucide-solid": "^1.14.0",
"simple-icons": "^16.18.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@faker-js/faker": "^10.4.0",
"@types/bun": "latest",
"concurrently": "^9.1.0",
"dprint": "^0.54.0",
"electrobun": "2.0.1",
"solid-js": "^1.9.12",
"typescript": "^6.0.3",
"vite": "^8.0.11",
"vite-plugin-solid": "^2.11.12",
"wait-on": "^9.0.5"
}
}