-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 788 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 788 Bytes
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
{
"name": "teleplate",
"version": "1.0.0",
"type": "module",
"packageManager": "bun@1.2.18",
"scripts": {
"dev": "bun --watch ./src/index.ts",
"start": "bun ./src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@libsql/client": "^0.15.15",
"@mtcute/bun": "latest",
"@mtcute/dispatcher": "^0.26.3",
"drizzle-orm": "^0.44.7",
"reflect-metadata": "^0.2.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "latest",
"bun-types": "latest",
"drizzle-kit": "^0.31.6",
"typescript": "^5.9.3"
}
}