-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.56 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
{
"name": "@omnidotdev/myfi-api",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"main": "build/server.js",
"module": "build/server.js",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development GRAPHILE_ENV=development bun run --watch src/server.ts",
"build": "bun build --target node --outdir build src/server.ts",
"start": "NODE_ENV=production GRAPHILE_ENV=production bun run src/scripts/db/migrate.ts && NODE_ENV=production GRAPHILE_ENV=production bun run 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 && GRAPHILE_ENV=development bun graphql:generate",
"db:migrate:drop": "bun --env-file .env.local drizzle-kit drop --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:studio": "bun --env-file .env.local drizzle-kit studio --config src/lib/config/drizzle.config.ts",
"graphql:generate": "GRAPHILE_ENV=development bun run --env-file .env.local src/scripts/generateGraphqlSchema.ts",
"test": "bun test",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/graphql-yoga": "^1.4.0",
"@envelop/generic-auth": "^11.0.0",
"@envelop/parser-cache": "^10.0.0",
"@envelop/validation-cache": "^10.0.0",
"@escape.tech/graphql-armor": "^3.2.0",
"@graphile/simplify-inflection": "^8.0.0-rc.2",
"@graphql-yoga/plugin-disable-introspection": "^2.19.0",
"@omnidotdev/providers": "github:omnidotdev/providers",
"drizzle-orm": "^0.45.1",
"elysia": "^1.4.21",
"grafast": "^1.0.0-rc.3",
"graphile-export": "^1.0.0-rc.2",
"graphql": "^16.12.0",
"graphql-yoga": "^5.18.0",
"jose": "^6.1.3",
"pg": "^8.16.3",
"plaid": "^41.3.0",
"postgraphile": "^5.0.0-rc.3",
"postgraphile-plugin-connection-filter": "^3.0.0-rc.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@envelop/types": "^5.2.1",
"@types/bun": "^1.3.5",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"knip": "^5.80.2",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome"
]
}