mirror of
https://github.com/remnawave/backend.git
synced 2026-05-13 04:09:01 +00:00
184 lines
6.1 KiB
JSON
184 lines
6.1 KiB
JSON
{
|
|
"name": "@remnawave/backend",
|
|
"version": "2.7.4",
|
|
"description": "Remnawave Panel Backend",
|
|
"private": false,
|
|
"type": "commonjs",
|
|
"license": "AGPL-3.0-only",
|
|
"author": "REMNAWAVE <github.com/remnawave>",
|
|
"homepage": "https://github.com/remnawave",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/remnawave/backend.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/remnawave/backend/issues"
|
|
},
|
|
"bin": {
|
|
"remnawave": "dist/src/bin/cli/cli.js",
|
|
"cli": "dist/src/bin/cli/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"build:seed": "tsc -p prisma/tsconfig.seed.json",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"start": "nest start",
|
|
"dev:api": "NODE_ENV=development INSTANCE_TYPE=api nest start --watch",
|
|
"dev:worker": "NODE_ENV=development INSTANCE_TYPE=processor nest start processors --watch",
|
|
"dev:scheduler": "NODE_ENV=development INSTANCE_TYPE=scheduler nest start scheduler --watch",
|
|
"start:debug": "NODE_ENV=development nest start --debug --watch",
|
|
"start:prod": "NODE_ENV=production INSTANCE_TYPE=api NODE_NO_WARNINGS=1 node dist/src/main",
|
|
"prod:deploy": "prisma migrate deploy && NODE_ENV=production NODE_NO_WARNINGS=1 node dist/src/main",
|
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
|
|
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
"lint:fix:imports": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --rule 'perfectionist/sort-imports: error'",
|
|
"prepare": "husky",
|
|
"migrate:dev": "prisma migrate dev",
|
|
"migrate:generate": "prisma generate",
|
|
"migrate:deploy": "prisma migrate deploy",
|
|
"migrate:seed": "prisma db seed",
|
|
"migrate:seed:dev": "npm run build:seed && prisma db seed",
|
|
"docs:serve": "compodoc -p tsconfig.json -s",
|
|
"generate:openapi": "nest start gen-doc",
|
|
"new:queue": "hygen new queue",
|
|
"knip": "knip",
|
|
"postinstall": "patch-package"
|
|
},
|
|
"dependencies": {
|
|
"@bull-board/api": "^6.18.2",
|
|
"@bull-board/express": "^6.18.2",
|
|
"@bull-board/nestjs": "^6.18.2",
|
|
"@grammyjs/parse-mode": "1.11.1",
|
|
"@kastov/cryptohapp": "^1.1.2",
|
|
"@kastov/grammy-nestjs": "0.4.2",
|
|
"@kastov/nestjs-prisma-kysely": "0.1.2",
|
|
"@kastov/request-ip": "^0.0.5",
|
|
"@kastov/uuid-color": "^0.0.3",
|
|
"@mongodb-js/zstd": "^7.0.0",
|
|
"@nestjs-cls/transactional": "3.1.1",
|
|
"@nestjs-cls/transactional-adapter-prisma": "1.3.1",
|
|
"@nestjs/axios": "4.0.1",
|
|
"@nestjs/bullmq": "11.0.4",
|
|
"@nestjs/common": "11.1.17",
|
|
"@nestjs/config": "4.0.3",
|
|
"@nestjs/core": "11.1.17",
|
|
"@nestjs/cqrs": "11.0.3",
|
|
"@nestjs/event-emitter": "3.0.1",
|
|
"@nestjs/jwt": "11.0.2",
|
|
"@nestjs/microservices": "^11.1.17",
|
|
"@nestjs/passport": "11.0.5",
|
|
"@nestjs/platform-express": "11.1.17",
|
|
"@nestjs/schedule": "6.1.1",
|
|
"@nestjs/serve-static": "5.0.4",
|
|
"@nestjs/swagger": "11.2.6",
|
|
"@nestjs/terminus": "^11.1.1",
|
|
"@noble/post-quantum": "^0.5.4",
|
|
"@peculiar/webcrypto": "^1.5.0",
|
|
"@peculiar/x509": "^1.14.3",
|
|
"@prisma/adapter-pg": "6.19.0",
|
|
"@prisma/client": "6.19.0",
|
|
"@remnawave/hashed-set": "^0.0.4",
|
|
"@remnawave/node-contract": "2.7.0",
|
|
"@remnawave/xtls-sdk": "^0.8.0",
|
|
"@scalar/nestjs-api-reference": "^1.0.31",
|
|
"@simplewebauthn/server": "^13.2.3",
|
|
"@songkeys/nestjs-redis": "^11.0.0",
|
|
"@stablelib/base64": "^2.0.1",
|
|
"@stablelib/x25519": "^2.0.1",
|
|
"@willsoto/nestjs-prometheus": "^6.0.2",
|
|
"arctic": "^3.7.0",
|
|
"axios": "^1.13.6",
|
|
"bullmq": "5.69.3",
|
|
"chalk": "^5.6.2",
|
|
"class-transformer": "^0.5.1",
|
|
"compression": "^1.8.1",
|
|
"consola": "^3.4.2",
|
|
"convert-units": "^3.0.0-beta.8",
|
|
"cookie-parser": "^1.4.7",
|
|
"country-code-emoji": "^2.3.0",
|
|
"dayjs": "^1.11.19",
|
|
"dotenv": "^17.3.1",
|
|
"enhanced-ms": "^4.2.0",
|
|
"gradient-string": "^3.0.0",
|
|
"grammy": "^1.41.1",
|
|
"helmet": "^8.1.0",
|
|
"husky": "9.1.7",
|
|
"hygen": "^6.2.11",
|
|
"ioredis": "^5.9.3",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"kysely": "^0.28.11",
|
|
"morgan": "^1.10.1",
|
|
"nanoid": "5.1.6",
|
|
"nest-winston": "^1.10.2",
|
|
"nestjs-cls": "^6.1.0",
|
|
"nestjs-zod": "4.3.1",
|
|
"node-object-hash": "^3.1.1",
|
|
"p-map": "^7.0.4",
|
|
"parse-prometheus-text-format": "^1.1.1",
|
|
"passkey-authenticator-aaguids": "^1.0.3",
|
|
"passport": "0.7.0",
|
|
"passport-http": "^0.3.0",
|
|
"passport-jwt": "4.0.1",
|
|
"patch-package": "^8.0.1",
|
|
"pkg-types": "2.3.0",
|
|
"prisma": "6.19.0",
|
|
"prisma-kysely": "2.2.1",
|
|
"prom-client": "^15.1.3",
|
|
"proxy-agent": "^6.5.0",
|
|
"reflect-metadata": "0.2.2",
|
|
"rxjs": "7.8.2",
|
|
"semver": "^7.7.4",
|
|
"superjson": "2.2.6",
|
|
"swagger-themes": "^1.4.3",
|
|
"table": "^6.9.0",
|
|
"transliteration": "^2.6.1",
|
|
"try": "^1.0.3",
|
|
"ufo": "^1.6.3",
|
|
"validator": "^13.15.26",
|
|
"winston": "^3.19.0",
|
|
"xbytes": "^1.9.1",
|
|
"xray-typed": "^1.1.1",
|
|
"yaml": "^2.8.2",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "11.0.16",
|
|
"@nestjs/schematics": "11.0.9",
|
|
"@types/compression": "^1.8.1",
|
|
"@types/cookie-parser": "^1.4.10",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.6",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/lodash": "^4.17.21",
|
|
"@types/morgan": "^1.9.10",
|
|
"@types/node": "^24.10.2",
|
|
"@types/passport-http": "^0.3.11",
|
|
"@types/passport-jwt": "^4.0.1",
|
|
"@types/semver": "^7.7.1",
|
|
"@types/validator": "^13.15.10",
|
|
"@typescript-eslint/eslint-plugin": "^8.49.0",
|
|
"@typescript-eslint/parser": "^8.49.0",
|
|
"eslint": "9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-paths": "^1.1.0",
|
|
"eslint-plugin-perfectionist": "^4.15.1",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"globals": "^16.5.0",
|
|
"knip": "^5.73.1",
|
|
"prettier": "^3.7.4",
|
|
"prisma-json-types-generator": "3.6.2",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-loader": "9.5.4",
|
|
"ts-node": "10.9.2",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"typescript": "~5.9.3",
|
|
"typescript-eslint": "^8.49.0",
|
|
"zod-to-json-schema": "^3.25.0"
|
|
},
|
|
"overrides": {
|
|
"prisma-kysely": {
|
|
"prisma": "6.19.0"
|
|
}
|
|
}
|
|
}
|