| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "@d8d/server",
- "version": "1.0.0",
- "type": "module",
- "description": "D8D API Server",
- "main": "src/index.ts",
- "types": "src/index.ts",
- "exports": {
- ".": {
- "import": "./src/index.ts",
- "require": "./src/index.ts",
- "types": "./src/index.ts"
- },
- "./modules/*": {
- "import": "./src/modules/*",
- "require": "./src/modules/*",
- "types": "./src/modules/*"
- }
- },
- "scripts": {
- "build": "tsc",
- "dev": "tsc --watch",
- "typecheck": "tsc --noEmit",
- "test": "vitest",
- "test:unit": "vitest run tests/unit",
- "test:integration": "vitest run tests/integration",
- "test:coverage": "vitest --coverage",
- "test:typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@asteasolutions/zod-to-openapi": "^8.1.0",
- "@hono/swagger-ui": "^0.5.0",
- "@hono/zod-openapi": "1.0.2",
- "@d8d/shared-types": "workspace:*",
- "@d8d/shared-utils": "workspace:*",
- "@d8d/shared-crud": "workspace:*",
- "@d8d/user-module": "workspace:*",
- "@d8d/auth-module": "workspace:*",
- "@d8d/file-module": "workspace:*",
- "axios": "^1.12.2",
- "bcrypt": "^6.0.0",
- "debug": "^4.4.3",
- "hono": "^4.8.5",
- "jsonwebtoken": "^9.0.2",
- "minio": "^8.0.5",
- "node-cron": "^4.2.1",
- "pg": "^8.16.3",
- "pg-dump-restore": "1.0.13",
- "redis": "^4.7.0",
- "reflect-metadata": "^0.2.2",
- "typeorm": "^0.3.20",
- "uuid": "^11.1.0",
- "zod": "^4.1.12"
- },
- "devDependencies": {
- "@types/bcrypt": "^6.0.0",
- "@types/debug": "^4.1.12",
- "@types/jsonwebtoken": "^9.0.7",
- "@types/pg": "^8.11.10",
- "tsc-alias": "^1.8.10",
- "typescript": "^5.8.3",
- "vitest": "^3.2.4",
- "@vitest/coverage-v8": "^3.2.4"
- },
- "files": [
- "src"
- ]
- }
|