-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.79 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
{
"name": "electrobun-app",
"version": "0.1.26",
"description": "ElectroBun app with React + Hono + Drizzle + bun:sqlite",
"scripts": {
"dev": "vite build && bun scripts/run-electrobun-build.ts && electrobun run",
"dev:hmr": "concurrently \"bun run hmr\" \"bun run dev\"",
"hmr": "vite --port 5173",
"build:web": "vite build",
"build": "vite build && bun scripts/run-electrobun-build.ts",
"build:canary": "vite build && bun scripts/run-electrobun-build.ts --env=canary",
"build:stable": "vite build && bun scripts/run-electrobun-build.ts --env=stable",
"db:reset": "bun src/bun/db/reset.ts",
"db:seed:s4v1:teams": "bun src/bun/db/seed-s4v1-teams.ts",
"start": "bun run dev",
"check": "ultracite check",
"test": "bun test",
"e2e:install": "playwright install chromium firefox",
"e2e:server": "bun run build:web && bun src/bun/e2e-server.ts",
"e2e:test": "playwright test --workers 4",
"e2e:test:ui": "playwright test --ui",
"fix": "ultracite fix",
"postinstall": "bun scripts/patch-electrobun.ts",
"prepare": "husky"
},
"dependencies": {
"@knadh/oat": "^0.4.1",
"@microsoft/fetch-event-source": "^2.0.1",
"drizzle-orm": "^0.45.1",
"electrobun": "latest",
"hono": "^4.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tinybase": "^7.3.5",
"valibot": "latest"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@biomejs/biome": "2.4.0",
"@types/bun": "latest",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.1.0",
"drizzle-kit": "^0.31.9",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"ultracite": "7.2.3",
"vite": "^8.0.0"
}
}