-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"scripts": {
"dev": "bun run --bun --watch src/index.ts",
"up": "docker compose up -d",
"down": "docker compose down",
"test": "bun --node vitest"
},
"dependencies": {
"@effect-app/core": "^1.8.1",
"@effect-app/prelude": "^0.151.3",
"@effect-app/schema": "^1.10.1",
"@effect/opentelemetry": "^0.37.3",
"@effect/platform": "^0.65.5",
"@effect/platform-bun": "^0.45.5",
"@effect/platform-node": "^0.60.5",
"@effect/schema": "^0.73.4",
"@effect/sql": "0.12.6",
"@opentelemetry/exporter-trace-otlp-http": "^0.53.0",
"@opentelemetry/sdk-metrics": "^1.26.0",
"@opentelemetry/sdk-trace-base": "^1.26.0",
"@opentelemetry/sdk-trace-node": "^1.26.0",
"@opentelemetry/sdk-trace-web": "^1.26.0",
"effect": "^3.8.3",
"jose": "^5.9.2",
"mongodb": "^6.9.0",
"mongodb-memory-server": "^10.0.0"
},
"name": "effect-todo",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@effect/vitest": "^0.10.3",
"@types/bun": "^1.1.9",
"@types/json-schema": "^7.0.15",
"@types/luxon": "^3.4.2",
"@types/mongodb": "^4.0.7",
"biome": "^0.3.3",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"trustedDependencies": [
"@biomejs/biome",
"core-js",
"esbuild",
"mongodb-memory-server",
"msgpackr-extract",
"protobufjs"
]
}