- PostgreSQL 16 Schema (12 Tabellen) - Multi-Tenant mit org_id - 40+ Performance Indexes - Full-Text Search für Kontakte - DSGVO Audit Logging - PBKDF2 statt Argon2 (Web Crypto API) - Auto-Update Triggers - Views für Pipeline & Activity Stats Deployed: https://api.crm.kronos-soulution.de
35 lines
1023 B
JSON
35 lines
1023 B
JSON
{
|
|
"name": "pulse-crm-backend",
|
|
"version": "0.1.0",
|
|
"tasks": {
|
|
"dev": "deno run --allow-net --allow-env --allow-read --watch src/main.ts",
|
|
"start": "deno run --allow-net --allow-env --allow-read src/main.ts",
|
|
"test": "deno test --allow-net --allow-env --allow-read",
|
|
"check": "deno check src/main.ts",
|
|
"lint": "deno lint",
|
|
"fmt": "deno fmt",
|
|
"db:migrate": "deno run --allow-net --allow-env --allow-read src/db/migrate.ts",
|
|
"db:seed": "deno run --allow-net --allow-env --allow-read src/db/seed.ts"
|
|
},
|
|
"imports": {
|
|
"@oak/oak": "jsr:@oak/oak@^17.0.0",
|
|
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
|
|
"postgres": "https://deno.land/x/postgres@v0.19.3/mod.ts",
|
|
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts",
|
|
"djwt": "https://deno.land/x/djwt@v3.0.2/mod.ts"
|
|
},
|
|
"compilerOptions": {
|
|
"strict": true
|
|
},
|
|
"fmt": {
|
|
"indentWidth": 2,
|
|
"lineWidth": 100,
|
|
"singleQuote": false
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"exclude": ["no-explicit-any"]
|
|
}
|
|
}
|
|
}
|