Initial Watermaps import

This commit is contained in:
BuTzZ
2026-07-24 11:29:24 +02:00
commit 57f7b4dedb
129 changed files with 43136 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"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",
"@watermaps/shared": "0.1.0",
"fastify": "^5.4.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"
}
}