Files

30 lines
678 B
JSON

{
"name": "@watermaps/api",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"@fastify/static": "^10.1.2",
"@watermaps/shared": "0.1.0",
"fastify": "^5.10.0",
"ioredis": "^5.6.1",
"pg": "^8.16.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.13.14",
"@types/pg": "^8.15.4",
"tsx": "^4.20.3",
"vitest": "^3.2.4"
}
}