This repository was archived by the owner on May 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.63 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
{
"name": "grindsense-api",
"version": "1.0.0",
"description": "API do GrindSense - NEXT 2026 (FIAP)",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build --compile --minify-whitespace --minify-syntax --outfile server src/index.ts",
"start": "./server",
"db:generate": "bunx --bun drizzle-kit generate",
"db:push": "bunx --bun drizzle-kit push",
"db:studio": "bunx --bun drizzle-kit studio",
"db:seed": "bun src/db/seed.ts",
"lint": "biome lint ./src",
"format": "biome format --write ./src",
"check": "biome check --write ./src",
"test:setup": "NODE_ENV=test bunx --bun drizzle-kit push",
"test": "bun run test:setup && bun test",
"test:cov": "bun run test:setup && bun test --coverage"
},
"dependencies": {
"@ai-sdk/google": "^3.0.62",
"@elysiajs/cors": "^1.4.1",
"@elysiajs/cron": "^1.4.1",
"@elysiajs/openapi": "^1.4.14",
"@elysiajs/opentelemetry": "^1.4.11",
"@js-temporal/polyfill": "^0.5.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.214.0",
"@opentelemetry/instrumentation-pg": "^0.66.0",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/semantic-conventions": "^1.40.0",
"ai": "^6.0.158",
"better-auth": "^1.6.2",
"drizzle-orm": "^0.45.2",
"elysia": "^1.4.28",
"elysia-prometheus": "^1.1.1",
"ioredis": "^5.10.1",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@faker-js/faker": "^10.4.0",
"@types/pg": "^8.20.0",
"bun-types": "^1.3.12",
"drizzle-kit": "^0.31.10"
}
}