29 lines
643 B
JSON
29 lines
643 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",
|
|
"@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"
|
|
}
|
|
}
|