SPB Git forge

spb/rareindex

Public
54commits 1branches 0releases
7.1 MBsize
maindefault branch
10 days agolast push
TypeScript 61.9% HTML 37.2% SQL 0.7%
950 B · 35 lines json
Raw Blame History
1{2  "name": "@rareindex/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    "build": "tsc -p tsconfig.json --noEmit",10    "typecheck": "tsc -p tsconfig.json --noEmit",11    "test": "vitest run --passWithNoTests",12    "create-key": "tsx scripts/create-key.ts"13  },14  "dependencies": {15    "@fastify/compress": "^9.0.0",16    "@fastify/cors": "^11.0.0",17    "@fastify/etag": "^6.0.0",18    "@fastify/rate-limit": "^11.0.0",19    "@rareindex/connectors": "workspace:*",20    "@rareindex/database": "workspace:*",21    "@rareindex/shared": "workspace:*",22    "@rareindex/taxonomy": "workspace:*",23    "@rareindex/valuation": "workspace:*",24    "fastify": "^5.6.0",25    "fastify-plugin": "^6.0.0",26    "zod": "^4.0.0"27  },28  "devDependencies": {29    "@types/node": "^24.0.0",30    "tsx": "^4.20.0",31    "typescript": "^5.9.3",32    "vitest": "^3.2.0"33  }34}35