-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
67
68
{
"name": "opencaptain",
"version": "0.1.0",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun --minify",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "bun run src/seed.ts",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"format": "biome format --write ./src",
"check": "biome check ./src",
"check:fix": "biome check --write ./src",
"test": "bun test",
"test:unit": "bun test --bail src/**/*.test.ts",
"test:integration": "bun test --bail src/**/*.integration.test.ts",
"test:coverage": "bun test --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "^1.3.8",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@casl/ability": "^6.8.0",
"@grammyjs/storage-redis": "^2.5.1",
"@great-detail/whatsapp": "^8.4.0",
"@hono/node-server": "^1.19.9",
"@hono/swagger-ui": "^0.5.1",
"@hono/zod-openapi": "^0.19.6",
"@hono/zod-validator": "^0.7.6",
"@langchain/textsplitters": "^1.0.1",
"@linear/sdk": "^73.0.0",
"@node-rs/argon2": "^2.0.2",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"bullmq": "^5.67.2",
"dayjs": "^1.11.19",
"drizzle-orm": "^0.45.1",
"grammy": "^1.39.3",
"hono": "^4.11.7",
"ioredis": "^5.9.2",
"nanoid": "^5.1.6",
"openai": "^6.17.0",
"pgvector": "^0.2.1",
"pino": "^10.3.0",
"postgres": "^3.4.8",
"redis": "^5.10.0",
"resend": "^6.9.1",
"zod": "^4.3.6"
}
}