-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"type": "module",
"private": true,
"scripts": {
"start": "cross-env ENABLE_WORKERS=true bun run src/index.ts",
"test": "bun test --bail=1",
"compile": "bun build --compile --minify --sourcemap --target bun-linux-x64-musl --outfile server src/index.ts",
"docker:build": "DOCKER_BUILDKIT=1 docker buildx build --platform linux/amd64 -t backend:local -f ./Dockerfile .",
"docker:run": "docker run --rm --env-file .env --network zeepkist-network -p 3000:3000 backend:local",
"docker": "bun run docker:build && bun run docker:run",
"check": "biome check",
"check:fix": "biome check --write ./",
"check:types": "tsc ./src/index.ts --noEmit",
"db:pull": "drizzle-kit pull",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"triggerJob": "cross-env ENABLE_WORKERS=true bun run src/jobs/triggerJobManually.ts",
"zsl:import": "bun run src/zsl/import.ts",
"zsl:build": "DOCKER_BUILDKIT=1 docker buildx build --platform linux/amd64 -t zsl:local -f ./Dockerfile.zsl .",
"zsl:run": "docker run --rm --env-file .env --network zeepkist-network zsl:local"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/helmet": "^13.0.1",
"@fastify/oauth2": "^8.1.2",
"@fastify/otel": "^0.9.3",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@lukeed/ms": "^2.0.2",
"@opentelemetry/auto-instrumentations-node": "^0.62.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/semantic-conventions": "^1.36.0",
"cron": "^4.3.2",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.44.3",
"fast-jwt": "^6.0.2",
"fastify": "^5.4.0",
"graphile-worker": "^0.16.6",
"openapi-types": "^12.1.3",
"openid-client": "^6.6.2",
"semver": "^7.7.2",
"ulid": "^3.0.1",
"when-json-met-bigint": "^0.27.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.18",
"@types/pg": "^8.15.4",
"@types/semver": "^7.7.0",
"@types/supertest": "^6.0.3",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.31.4",
"supertest": "^7.1.3",
"typescript": "^5.8.3"
}
}