{
  "name": "@zephyrfs/web-server",
  "version": "0.1.0",
  "description": "ZephyrFS Web Interface Backend",
  "main": "dist/index.js",
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "build": "tsc",
    "start": "node dist/index.js",
    "test": "vitest",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "fastify": "^4.24.3",
    "@fastify/cors": "^8.4.0",
    "@fastify/jwt": "^7.2.4",
    "@fastify/multipart": "^8.0.0",
    "@fastify/static": "^6.12.0",
    "@fastify/websocket": "^8.3.1",
    "@fastify/oauth2": "^7.8.0",
    "webdav": "^5.3.0",
    "ws": "^8.14.2",
    "zod": "^3.22.4",
    "archiver": "^6.0.1",
    "bcrypt": "^5.1.1",
    "nodemailer": "^6.9.7",
    "sqlite3": "^5.1.6",
    "kysely": "^0.27.2"
  },
  "devDependencies": {
    "@types/node": "^20.8.10",
    "@types/ws": "^8.5.8",
    "@types/archiver": "^6.0.2",
    "@types/bcrypt": "^5.0.2",
    "@types/nodemailer": "^6.4.14",
    "@typescript-eslint/eslint-plugin": "^6.9.1",
    "@typescript-eslint/parser": "^6.9.1",
    "eslint": "^8.52.0",
    "tsx": "^4.1.0",
    "typescript": "^5.2.2",
    "vitest": "^0.34.6"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}