-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.45 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.45 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
61
62
63
64
65
66
{
"name": "mlack",
"version": "1.0.0",
"description": "A slack-like app experiment",
"main": "hono/index.ts",
"type": "module",
"scripts": {
"dev": "pnpm run build:client && pnpm run build:assets && wrangler dev",
"build": "rm -rf dist public && pnpm run build:client && pnpm run build:assets && tsc --project tsconfig.prod.json",
"build:client": "tsc --project tsconfig.client.json",
"build:client:watch": "tsc --project tsconfig.client.json --watch",
"build:assets": "mkdir -p public/components public/static && cp hono/components/*.css public/components/ && cp hono/static/*.js hono/static/*.js.map public/static/",
"build:check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --logHeapUsage",
"test:e2e": "playwright test",
"lint": "biome check --verbose .",
"lint:fix": "biome check --verbose --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply mlack-db --local",
"db:seed": "wrangler d1 execute mlack-db --local --file=hono/db/seed.sql",
"db:studio": "drizzle-kit studio",
"db:migrate:prod": "wrangler d1 migrations apply mlack-db --remote --env production",
"db:seed:prod": "wrangler d1 execute mlack-db --remote --env production --file=hono/db/seed.sql",
"deploy": "pnpm run build:client && pnpm run build:assets && wrangler deploy --env production",
"electron:dev": "pnpm run --filter mlack-desktop dev",
"electron:build": "pnpm run --filter mlack-desktop build",
"electron:package": "pnpm run --filter mlack-desktop package",
"mobile:sync": "pnpm run --filter mlack-mobile cap:sync",
"mobile:ios": "pnpm run --filter mlack-mobile cap:open:ios",
"mobile:android": "pnpm run --filter mlack-mobile cap:open:android"
},
"keywords": [
"hono",
"slack",
"typescript"
],
"author": "",
"license": "ISC",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"esbuild",
"workerd"
]
},
"dependencies": {
"@hono/oauth-providers": "^0.8.5",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.12",
"hono-sessions": "^0.8.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@cloudflare/workers-types": "^4.20260405.1",
"@libsql/client": "^0.17.2",
"@playwright/test": "^1.59.1",
"@types/node": "^24.12.2",
"drizzle-kit": "^0.31.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wrangler": "^4.80.0"
}
}