-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.27 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
{
"name": "hono-starter",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"imports": {
"@/*": "./src/*"
},
"scripts": {
"test": "vitest",
"test:ci": "vitest run",
"dev": "tsx watch src/index.ts",
"build": "eslint . && tsx esbuild.config.ts",
"start": "node dist/index.js",
"worker:prod": "node dist/temporal/worker.js",
"worker:dev": "tsx watch src/temporal/worker.ts",
"db:push": "npx drizzle-kit push && tsx src/db/scripts/post-schema-push.ts",
"db:pull": "npx drizzle-kit pull",
"lint": "eslint . --cache --cache-location node_modules/.cache/eslint",
"lint:fix": "eslint . --fix --cache --cache-location node_modules/.cache/eslint",
"format": "prettier --write . --cache",
"format:check": "prettier --check . --cache",
"typecheck": "npx tsc",
"check": "npx tsc && eslint . --cache --cache-location node_modules/.cache/eslint && vitest run && pnpm format"
},
"dependencies": {
"@effect/vitest": "^0.27.0",
"@hono/node-server": "^1.18.1",
"@hono/standard-validator": "^0.2.0",
"@hono/swagger-ui": "^0.5.2",
"@planetscale/database": "^1.19.0",
"@sentry/esbuild-plugin": "^4.6.1",
"@sentry/node": "^10.11.0",
"@standard-community/standard-json": "^0.3.5",
"@standard-community/standard-openapi": "^0.2.9",
"@temporalio/activity": "^1.13.2",
"@temporalio/client": "^1.13.2",
"@temporalio/worker": "^1.13.2",
"@temporalio/workflow": "^1.13.2",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.4",
"effect": "^3.19.6",
"hono": "^4.8.12",
"hono-openapi": "^1.1.1",
"jose": "^6.1.3",
"mysql2": "^3.14.3",
"nanoid": "^5.1.6",
"vitest": "^3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.0.0",
"drizzle-kit": "^0.31.4",
"esbuild": "^0.25.9",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unicorn": "^62.0.0",
"prettier": "^3.7.4",
"tsx": "^4.7.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.48.0"
}
}