-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (48 loc) · 1.81 KB
/
package.json
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
{
"name": "bun-service-example",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"services:up": "docker compose up -d",
"services:down": "docker compose down",
"db:push": "env-cmd -x drizzle-kit push --dialect=postgresql --schema=src/database/schemas.ts --url=\\$POSTGRES_CONNECTION_STRING",
"flowcore:backfill": "env-cmd -x flowcore scenario local -f flowcore.yml -f flowcore.local.yml -f flowcore.local.development.yml -e http://127.0.0.1:3000/transformers -H \"X-Secret: \\$TRANSFORMER_SECRET\"",
"flowcore:stream": "env-cmd -x flowcore scenario local -s now -f flowcore.yml -f flowcore.local.yml -f flowcore.local.development.yml -e http://127.0.0.1:3000/transformers -H \"X-Secret: \\$TRANSFORMER_SECRET\"",
"flowcore:apply": "flowcore scenario apply -f flowcore.yml",
"flowcore:apply:dev": "flowcore data-core apply -f flowcore.yml -f flowcore.local.yml",
"dev": "bun run --watch src/index.ts",
"build": "bun build --compile --minify --sourcemap --outfile=dist/app src/index.ts",
"lint": "biome lint",
"format": "biome format",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@elysiajs/bearer": "~1.1.1",
"jose": "~5.8.0",
"@flowcore/sdk-transformer-core": "~2.2.3",
"@sinclair/typebox": "~0.32.15",
"croner": "~8.1.1",
"dayjs": "~1.11.12",
"elysia": "~1.1.9",
"ioredis": "~5.4.1",
"drizzle-orm": "~0.33.0",
"pg": "~8.12.0",
"winston": "~3.14.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@elysiajs/eden": "~1.1.3",
"@faker-js/faker": "~8.4.1",
"@types/bun": "latest",
"@types/pg": "~8.11.6",
"drizzle-kit": "~0.24.0",
"env-cmd": "~10.1.0",
"typescript": "~5.4.2"
},
"overrides": {
"@sinclair/typebox": "~0.32.15"
}
}