-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 830 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
29
30
{
"name": "effect-web-server",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bun --watch src/main.ts",
"api": "bun --watch src/api-server.ts",
"build": "bun build src/main.ts --outdir dist",
"start": "bun dist/main.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@effect/platform": "^0.87.1",
"@effect/platform-bun": "^0.72.3",
"@effect/schema": "^0.75.5",
"@effect/sql": "^0.40.1",
"@effect/sql-drizzle": "^0.39.1",
"@effect/sql-sqlite-bun": "^0.41.1",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.2",
"effect": "^3.16.10"
},
"devDependencies": {
"@types/bun": "^1.2.17",
"typescript": "^5.8.3"
}
}