Files
Rishi Ghan f65a24da25
Some checks failed
Docker Image CI / build (push) Has been cancelled
Added graphql deps and models
2026-03-26 21:05:13 -04:00

67 lines
2.2 KiB
JSON

{
"name": "threetwo-acquisition-service",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "ts-node ./node_modules/moleculer/bin/moleculer-runner.js --config moleculer.config.ts --hot --repl services/**/*.service.ts",
"start": "moleculer-runner --config dist/moleculer.config.js",
"test:types": "concurrently npm:prettier npm:lint npm:typecheck",
"typecheck": "tsc --noEmit && echo \"tsc: no typecheck errors\"",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "cross-env TIMING=1 eslint . --ext cjs,mjs,js,jsx,ts,tsx",
"lint:fix": "cross-env TIMING=1 eslint . --ext cjs,mjs,js,jsx,ts,tsx --fix",
"prettier": "prettier . --ignore-unknown --check",
"prettier:fix": "prettier . --ignore-unknown --write"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.17.4",
"@types/node": "^18.11.9",
"@types/parse-torrent": "^5.8.7",
"@types/qs": "^6.9.18",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"moleculer-repl": "^0.7.3",
"prettier": "^2.8.0",
"qbittorrent-api-v2": "^1.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.31",
"@robertklep/qbittorrent": "^1.0.1",
"axios": "^1.7.9",
"graphql": "^16.13.1",
"graphql-tag": "^2.12.6",
"ioredis": "^5.0.0",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"moleculer": "^0.14.34",
"moleculer-web": "^0.10.7",
"parse-torrent": "^9.1.5",
"socket.io-client": "^4.7.5",
"string-similarity-alg": "^1.3.2"
},
"engines": {
"node": ">= 16.x.x"
}
}