mirror of
https://github.com/Chevron7Locked/kima-hub.git
synced 2026-06-19 07:37:17 +00:00
fb25b0823e
Optional slskd backend for Soulseek (#205, by gossip31) and the audio-analyzer crash-loop fix (#204, by gossip31, plus a retry-count backstop).
82 lines
2.6 KiB
JSON
82 lines
2.6 KiB
JSON
{
|
|
"name": "kima-backend",
|
|
"version": "1.8.1",
|
|
"description": "Kima backend API server",
|
|
"license": "GPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Chevron7Locked/kima-hub.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"prebuild": "rm -rf dist",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"db:migrate": "prisma migrate deploy",
|
|
"db:studio": "prisma studio",
|
|
"seed:user": "tsx seeds/createUser.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "jest",
|
|
"test:smoke": "tsx scripts/smoke.ts",
|
|
"sync": "tsx src/workers/sync.ts",
|
|
"create:testuser": "tsx scripts/create-test-user.ts",
|
|
"generate:vocabulary": "tsx scripts/generateVibeVocabulary.ts"
|
|
},
|
|
"dependencies": {
|
|
"@bull-board/api": "^6.20.3",
|
|
"@bull-board/express": "^6.20.3",
|
|
"@ffmpeg-installer/ffmpeg": "^1.1.0",
|
|
"@prisma/client": "^5.22.0",
|
|
"axios": "^1.13.6",
|
|
"bcrypt": "^6.0.0",
|
|
"bullmq": "^5.70.1",
|
|
"connect-redis": "^7.1.0",
|
|
"cors": "^2.8.5",
|
|
"date-fns": "^4.1.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^8.2.1",
|
|
"express-session": "^1.17.3",
|
|
"fast-xml-parser": "^5.4.1",
|
|
"fluent-ffmpeg": "^2.1.3",
|
|
"fuzzball": "^2.2.3",
|
|
"helmet": "^7.1.0",
|
|
"ioredis": "^5.10.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"multer": "^2.1.0",
|
|
"music-metadata": "^11.10.0",
|
|
"node-cron": "^4.2.1",
|
|
"p-limit": "^7.2.0",
|
|
"p-queue": "^9.0.0",
|
|
"prom-client": "^15.1.3",
|
|
"qrcode": "^1.5.4",
|
|
"rss-parser": "^3.13.0",
|
|
"sharp": "^0.34.5",
|
|
"speakeasy": "^2.0.0",
|
|
"typed-emitter": "^2.1.0",
|
|
"umap-js": "^1.4.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^4.17.21",
|
|
"@types/express-session": "^1.17.10",
|
|
"@types/fluent-ffmpeg": "^2.1.28",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/multer": "^2.0.0",
|
|
"@types/node": "^20.10.4",
|
|
"@types/node-cron": "^3.0.11",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@types/speakeasy": "^2.0.10",
|
|
"@types/supertest": "^7.2.0",
|
|
"jest": "^30.2.0",
|
|
"prisma": "^5.22.0",
|
|
"supertest": "^7.2.2",
|
|
"ts-jest": "^29.4.6",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|