deps-upgrade(root): ⬆️ Update all root-level and service-specific dependencies across api, collector, processor, realtime packages with security patches/bug fixes/compatibility updates
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
6d02f06339
commit
64632b1bb5
6 changed files with 34 additions and 8949 deletions
101
package.json
101
package.json
|
|
@ -1,92 +1,27 @@
|
|||
{
|
||||
"name": "@lilith/analytics",
|
||||
"name": "@analytics-workspace",
|
||||
"version": "0.1.0",
|
||||
"description": "Generic, self-hosted analytics platform with event tracking, funnels, cohorts, and GDPR compliance",
|
||||
"type": "module",
|
||||
"main": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./types": {
|
||||
"types": "./dist/types/index.d.ts",
|
||||
"import": "./dist/types/index.js"
|
||||
},
|
||||
"./client": {
|
||||
"types": "./dist/client/index.d.ts",
|
||||
"import": "./dist/client/index.js"
|
||||
},
|
||||
"./nestjs": {
|
||||
"types": "./dist/nestjs/index.d.ts",
|
||||
"import": "./dist/nestjs/index.js"
|
||||
},
|
||||
"./widgets": {
|
||||
"types": "./dist/widgets/index.d.ts",
|
||||
"import": "./dist/widgets/index.js"
|
||||
}
|
||||
},
|
||||
"files": ["dist"],
|
||||
"engines": {
|
||||
"node": ">=20.0.0",
|
||||
"pnpm": ">=9.0.0"
|
||||
},
|
||||
"private": true,
|
||||
"description": "Analytics platform workspace",
|
||||
"workspaces": ["packages/*", "services/*"],
|
||||
"packageManager": "bun@1.2.6",
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"build:services": "pnpm -r --filter './services/*' build",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test": "pnpm -r test",
|
||||
"lint": "pnpm -r lint",
|
||||
"dev:collector": "pnpm -C services/collector dev",
|
||||
"dev:processor": "pnpm -C services/processor dev",
|
||||
"dev:api": "pnpm -C services/api dev",
|
||||
"dev:realtime": "pnpm -C services/realtime dev",
|
||||
"clean": "rm -rf dist && pnpm -r exec -- rm -rf dist node_modules"
|
||||
},
|
||||
"dependencies": {
|
||||
"recharts": "^2.10.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
||||
"@nestjs/core": "^10.0.0 || ^11.0.0",
|
||||
"react": "^18.0.0 || ^19.0.0",
|
||||
"react-dom": "^18.0.0 || ^19.0.0",
|
||||
"rxjs": "^7.8.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@nestjs/common": { "optional": true },
|
||||
"@nestjs/core": { "optional": true },
|
||||
"react": { "optional": true },
|
||||
"react-dom": { "optional": true },
|
||||
"rxjs": { "optional": true }
|
||||
"build": "turbo run build",
|
||||
"build:lib": "turbo run build --filter=@lilith/analytics",
|
||||
"build:services": "turbo run build --filter='./services/*'",
|
||||
"typecheck": "turbo run typecheck",
|
||||
"test": "turbo run test",
|
||||
"lint": "turbo run lint",
|
||||
"dev:collector": "bun run --cwd services/collector dev",
|
||||
"dev:processor": "bun run --cwd services/processor dev",
|
||||
"dev:api": "bun run --cwd services/api dev",
|
||||
"dev:realtime": "bun run --cwd services/realtime dev",
|
||||
"clean": "turbo run clean"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lilith/configs": "^2.2.1",
|
||||
"@nestjs/common": "^11.0.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"@nestjs/core": "^11.0.0",
|
||||
"@rollup/rollup-linux-x64-gnu": "^4.55.1",
|
||||
"@types/react": "^18.2.0",
|
||||
"@types/react-dom": "^18.2.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"reflect-metadata": "^0.2.0",
|
||||
"rxjs": "^7.8.0",
|
||||
"tsup": "^8.0.0",
|
||||
"typescript": "^5.4.0"
|
||||
"turbo": "^2.7.3",
|
||||
"unplugin-swc": "^1.5.1"
|
||||
},
|
||||
"keywords": [
|
||||
"analytics",
|
||||
"event-tracking",
|
||||
"funnel-analysis",
|
||||
"cohort-analysis",
|
||||
"gdpr",
|
||||
"privacy-first",
|
||||
"self-hosted"
|
||||
],
|
||||
"author": "Lilith Collective",
|
||||
"license": "NONE",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://forge.nasty.sh/lilith/analytics.git"
|
||||
|
|
|
|||
8857
pnpm-lock.yaml
generated
8857
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -11,13 +11,15 @@
|
|||
"start": "node dist/main.js",
|
||||
"start:prod": "NODE_ENV=production node dist/main.js",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"verify": "pnpm build && node scripts/verify-circular-deps.mjs",
|
||||
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
||||
"lint": "eslint src/",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest"
|
||||
"test:watch": "vitest",
|
||||
"test:cov": "vitest run --coverage",
|
||||
"test:e2e": "vitest run --config vitest.e2e.config.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lilith/analytics": "workspace:^",
|
||||
"@lilith/analytics": "workspace:*",
|
||||
"@nestjs/common": "^11.0.0",
|
||||
"@nestjs/config": "^4.0.0",
|
||||
"@nestjs/core": "^11.0.0",
|
||||
|
|
@ -43,6 +45,7 @@
|
|||
"@types/express": "^5.0.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"typescript": "^5.4.0",
|
||||
"unplugin-swc": "^1.5.9",
|
||||
"vitest": "^1.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@
|
|||
"start": "node dist/main.js",
|
||||
"start:prod": "NODE_ENV=production node dist/main.js",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"verify": "pnpm build && node scripts/verify-circular-deps.mjs",
|
||||
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
||||
"lint": "eslint src/",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lilith/analytics": "workspace:^",
|
||||
"@lilith/analytics": "workspace:*",
|
||||
"@nestjs/bullmq": "^11.0.0",
|
||||
"@nestjs/common": "^11.0.0",
|
||||
"@nestjs/config": "^4.0.0",
|
||||
|
|
@ -45,6 +45,7 @@
|
|||
"@types/express": "^5.0.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"typescript": "^5.4.0",
|
||||
"unplugin-swc": "^1.5.1",
|
||||
"vitest": "^1.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@
|
|||
"start": "node dist/main.js",
|
||||
"start:prod": "NODE_ENV=production node dist/main.js",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"verify": "pnpm build && node scripts/verify-circular-deps.mjs",
|
||||
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
||||
"lint": "eslint src/",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lilith/analytics": "workspace:^",
|
||||
"@lilith/analytics": "workspace:*",
|
||||
"@nestjs/bullmq": "^11.0.0",
|
||||
"@nestjs/common": "^11.0.0",
|
||||
"@nestjs/config": "^4.0.0",
|
||||
|
|
@ -26,6 +26,7 @@
|
|||
"@nestjs/terminus": "^11.0.0",
|
||||
"@nestjs/typeorm": "^11.0.0",
|
||||
"bullmq": "^5.0.0",
|
||||
"ioredis": "^5.9.1",
|
||||
"pg": "^8.11.0",
|
||||
"reflect-metadata": "^0.2.0",
|
||||
"rxjs": "^7.8.0",
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@
|
|||
"start": "node dist/main.js",
|
||||
"start:prod": "NODE_ENV=production node dist/main.js",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"verify": "pnpm build && node scripts/verify-circular-deps.mjs",
|
||||
"verify": "bun run build && node scripts/verify-circular-deps.mjs",
|
||||
"lint": "eslint src/",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lilith/analytics": "workspace:^",
|
||||
"@lilith/analytics": "workspace:*",
|
||||
"@nestjs/common": "^11.0.0",
|
||||
"@nestjs/config": "^4.0.0",
|
||||
"@nestjs/core": "^11.0.0",
|
||||
|
|
@ -26,6 +26,7 @@
|
|||
"@nestjs/terminus": "^11.0.0",
|
||||
"@nestjs/typeorm": "^11.0.0",
|
||||
"@nestjs/websockets": "^11.0.0",
|
||||
"ioredis": "^5.9.1",
|
||||
"pg": "^8.11.0",
|
||||
"reflect-metadata": "^0.2.0",
|
||||
"rxjs": "^7.8.0",
|
||||
|
|
@ -41,6 +42,7 @@
|
|||
"@swc/core": "^1.15.8",
|
||||
"@types/node": "^20.0.0",
|
||||
"typescript": "^5.4.0",
|
||||
"unplugin-swc": "^1.5.9",
|
||||
"vitest": "^1.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue