@sotatech/nest-quickfix
Version:
A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.
127 lines (126 loc) • 3.55 kB
JSON
{
"name": "@sotatech/nest-quickfix",
"version": "0.0.10-release-7",
"description": "A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.",
"author": "sota",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sotaaaaa/nest-quickfix.git"
},
"bugs": {
"url": "https://github.com/sotaaaaa/nest-quickfix/issues"
},
"homepage": "https://github.com/sotaaaaa/nest-quickfix#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "rm -rf tsconfig.tsbuildinfo && nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "npm run build"
},
"dependencies": {
"-": "^0.0.1",
"@liaoliaots/nestjs-redis": "^10.0.0",
"@nestjs/common": "^11.0.9",
"@nestjs/core": "^11.0.9",
"@nestjs/event-emitter": "^3.0.0",
"@nestjs/mapped-types": "*",
"@nestjs/platform-express": "^11.0.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"date-fns": "^4.1.0",
"g": "^2.0.1",
"ioredis": "^5.5.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"uuid": "^11.0.5",
"winston": "^3.17.0",
"yalc": "1.0.0-pre.53"
},
"devDependencies": {
"@nestjs/cli": "^11.0.2",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.9",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"rimraf": "^5.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"keywords": [
"nestjs",
"quickfix",
"fix-protocol",
"financial-trading",
"fix",
"trading",
"financial",
"exchange",
"market-data",
"order-management",
"session-management",
"tcp",
"messaging",
"high-performance",
"typescript",
"nodejs",
"nestjs-module",
"fix-engine",
"fix-server",
"fix-client"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
]
}