-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.59 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@omnidotdev/backfeed-api",
"version": "0.0.0",
"private": true,
"main": "build/server.js",
"scripts": {
"dev": "GRAPHILE_ENV=development NODE_ENV=development bun run --env-file .env.local --env-file .env.development --hot src/server.ts",
"build": "bun build --target node --outdir build src/server.ts src/instrumentation.ts",
"start": "NODE_ENV=production GRAPHILE_ENV=production bun run src/scripts/db/migrate.ts && NODE_ENV=production GRAPHILE_ENV=production bun run --import ./build/instrumentation.js build/server.js",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check",
"knip": "knip-bun",
"db:setup": "bun src/scripts/db/setupDatabase.ts",
"db:check": "bun --env-file .env.local drizzle-kit check --config src/lib/config/drizzle.config.ts",
"db:generate": "bun --env-file .env.local drizzle-kit generate --config src/lib/config/drizzle.config.ts",
"db:migrate": "bun --env-file .env.local drizzle-kit migrate --config src/lib/config/drizzle.config.ts && bun graphql:generate",
"db:migrate:drop": "bun --env-file .env.local drizzle-kit drop --config src/lib/config/drizzle.config.ts",
"db:pull": "bun --env-file .env.local drizzle-kit introspect --config src/lib/config/drizzle.config.ts",
"db:push": "bun --env-file .env.local drizzle-kit push --config src/lib/config/drizzle.config.ts",
"db:seed": "NODE_ENV=development bun run --env-file .env.local src/scripts/db/seedDatabase.ts",
"db:studio": "bun --env-file .env.local drizzle-kit studio --config src/lib/config/drizzle.config.ts",
"db:up": "bun --env-file .env.local drizzle-kit up --config src/lib/config/drizzle.config.ts",
"graphql:generate": "GRAPHILE_ENV=development bun run --env-file .env.local src/scripts/generateGraphqlSchema.ts",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/graphql-yoga": "^1.4.0",
"@envelop/generic-auth": "^11.0.0",
"@envelop/opentelemetry": "^9.0.0",
"@envelop/parser-cache": "^10.0.0",
"@envelop/validation-cache": "^10.0.0",
"@escape.tech/graphql-armor": "^3.2.0",
"@graphile/pg-aggregates": "^0.2.0-rc.1",
"@graphile/simplify-inflection": "^8.0.0-rc.2",
"@graphql-yoga/plugin-disable-introspection": "^2.19.0",
"@omnidotdev/providers": "github:omnidotdev/providers#72baa55",
"@omnidotdev/search": "github:omnidotdev/search",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.68.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.210.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.210.0",
"@opentelemetry/resources": "^2.4.0",
"@opentelemetry/sdk-logs": "^0.210.0",
"@opentelemetry/sdk-node": "^0.210.0",
"@opentelemetry/semantic-conventions": "^1.39.0",
"@tanstack/query-core": "^5.90.16",
"dayjs": "^1.11.19",
"drizzle-orm": "^0.45.1",
"drizzle-seed": "^0.3.1",
"elysia": "^1.4.21",
"elysia-rate-limit": "^4.5.0",
"grafast": "^1.0.0-rc.9",
"graphile-export": "^1.0.0-rc.5",
"graphql": "^16.12.0",
"graphql-yoga": "^5.18.0",
"pg": "^8.16.3",
"postgraphile": "^5.0.0-rc.9",
"postgraphile-plugin-connection-filter": "^3.0.0-rc.1",
"unleash-client": "^6.9.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@envelop/types": "^5.2.1",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.6",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"knip": "^5.80.2",
"replace-in-file": "^8.4.0",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}