Files
homeAutomation/energy-management/backend/package.json
2026-08-19 18:35:47 +02:00

30 lines
682 B
JSON

{
"name": "backend",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"test": "vitest run"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/static": "^10.1.3",
"@influxdata/influxdb-client": "^1.35.0",
"better-sqlite3": "^11.8.1",
"dotenv": "^17.4.2",
"fastify": "^5.2.1",
"pino": "^9.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.7",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}