TypeScript 97.5%
SQL 1.4%
Python 0.8%
1{2 "name": "@fetcha/api",3 "version": "0.1.0",4 "private": true,5 "type": "module",6 "scripts": {7 "dev": "tsx watch src/server.ts",8 "start": "tsx src/server.ts",9 "typecheck": "tsc -p tsconfig.json --noEmit",10 "test": "vitest run --passWithNoTests"11 },12 "dependencies": {13 "@fastify/cors": "^11.0.0",14 "@fetcha/browser": "workspace:*",15 "@fetcha/core": "workspace:*",16 "@fetcha/db": "workspace:*",17 "@fetcha/email": "workspace:*",18 "@fetcha/providers": "workspace:*",19 "@fetcha/routing": "workspace:*",20 "fastify": "^5.4.0",21 "ioredis": "^5.6.0",22 "pino": "^9.7.0",23 "pino-pretty": "^13.0.0",24 "tsx": "^4.20.0",25 "zod": "^4.0.0"26 },27 "devDependencies": {28 "@types/node": "^24.0.0",29 "typescript": "^5.9.3",30 "vitest": "^3.2.0"31 }32}33