-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.44 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
{
"name": "effect-worker",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "vitest run",
"test:watch": "vitest",
"cf-typegen": "wrangler types --env-interface Env",
"test:integration": "vitest run --config vitest.integration.config.ts",
"typecheck": "tsc --noEmit",
"build": "tsc && wrangler deploy --dry-run",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:push": "DATABASE_URL=postgres://postgres:postgres@localhost:5432/effect_worker drizzle-kit push",
"db:seed": "npx tsx scripts/seed.ts",
"db:studio": "DATABASE_URL=postgres://postgres:postgres@localhost:5432/effect_worker drizzle-kit studio",
"rpc:client": "npx tsx scripts/rpc-client.ts"
},
"dependencies": {
"@effect/experimental": "^0.58.0",
"@effect/platform": "^0.94.1",
"@effect/platform-node": "^0.104.0",
"@effect/rpc": "^0.73.0",
"@effect/sql": "^0.49.0",
"@effect/sql-drizzle": "^0.48.0",
"@effect/sql-pg": "^0.50.0",
"drizzle-orm": "^0.45.0",
"effect": "^3.19.14",
"postgres": "^3.4.7"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@faker-js/faker": "^9.0.0",
"@types/node": "^22.0.0",
"drizzle-kit": "^0.31.8",
"miniflare": "^3.20241127.0",
"tsx": "^4.7.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0",
"wrangler": "^4.55.0"
}
}