-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.14 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.14 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"type": "module",
"name": "@repo/api",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "dist/server.js",
"engines": {
"node": "22.x"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "pnpm test:unit",
"test:unit": "NODE_OPTIONS='--import tsx' vitest run",
"test:watch": "NODE_OPTIONS='--import tsx' vitest",
"test:cov": "NODE_OPTIONS='--import tsx' vitest run --coverage",
"test:e2e": "node scripts/run-e2e.mjs",
"test:e2e:local": "node scripts/run-e2e-local.mjs",
"test:e2e:ui": "pnpm test:e2e -- --ui",
"test:e2e:debug": "pnpm test:e2e -- --debug",
"start": "pnpm build && node dist/server.js",
"start:ci": "NODE_ENV=test ALLOW_TEST=true node --import tsx server.ts",
"build": "pnpm generate:openapi && pnpm db:migrate && pnpm build:ts",
"build:ts": "tsgo -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"watch:ts": "pnpm build:ts && concurrently 'tsgo -p tsconfig.build.json -w' 'tsc-alias -p tsconfig.build.json -w'",
"dev": "pnpm generate:openapi && concurrently -n server,openapi 'node --watch --import tsx server.ts' 'chokidar \"src/routes/**/*.ts\" \"src/plugins/**/*.ts\" -c \"pnpm generate:openapi\"'",
"lint": "pnpm run lint:biome && pnpm run lint:eslint",
"lint:biome": "biome check .",
"lint:biome:fix": "biome check . --write",
"lint:eslint": "eslint . --max-warnings 0",
"lint:eslint:fix": "eslint . --fix --max-warnings 0",
"lint:fix": "pnpm run lint:eslint:fix && pnpm run lint:biome:fix",
"checktypes": "tsgo --noEmit -p tsconfig.build.json",
"generate:openapi": "node --import tsx scripts/generate-openapi.ts",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:reset-and-migrate": "pnpm db:reset && RUN_PG_MIGRATE=true DATABASE_URL=\"postgresql://postgres:postgres@127.0.0.1:54322/postgres\" pnpm db:migrate",
"db:status": "supabase status",
"db:migrate": "node --import tsx scripts/migrate.ts",
"db:generate": "NODE_OPTIONS='--import tsx' drizzle-kit generate",
"db:push": "drizzle-kit push"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.58",
"@ai-sdk/openai": "^3.0.0",
"@faker-js/faker": "^9.4.0",
"@fastify/autoload": "^6.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@openrouter/ai-sdk-provider": "^2.2.3",
"@repo/email": "workspace:*",
"@repo/error": "workspace:*",
"@repo/utils": "workspace:*",
"@scalar/fastify-api-reference": "^1.44.18",
"@sentry/node": "^10.38.0",
"@simplewebauthn/server": "^13.2.0",
"@sinclair/typebox": "^0.34.48",
"@solana/web3.js": "^1.98.4",
"@t3-oss/env-core": "^0.13.10",
"ai": "^6.0.86",
"ai-sdk-ollama": "^3.8.0",
"bs58": "^6.0.0",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"fastify": "^5.8.1",
"fastify-cli": "^7.4.1",
"fastify-plugin": "^5.1.0",
"google-auth-library": "^10.6.1",
"otplib": "^13.3.0",
"pg": "^8.18.0",
"qrcode": "^1.5.4",
"resend": "^6.9.2",
"siwe": "^3.0.0",
"tweetnacl": "^1.0.3",
"viem": "^2.45.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@electric-sql/pglite": "^0.3.15",
"@playwright/test": "^1.58.2",
"@repo/eslint-config": "workspace:*",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260213.1",
"@vitest/coverage-v8": "^4.0.18",
"c8": "^10.1.3",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.9",
"eslint": "^9.0.0",
"fastify-tsconfig": "^3.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"undici-types": "^7.22.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
}
}