Files

24 lines
607 B
JSON
Raw Permalink Normal View History

{
"name": "@the-order/events",
"version": "0.1.0",
"private": true,
"description": "Event bus for The Order",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts' --ignore-pattern '**/*.js' --ignore-pattern '**/*.d.ts'",
"type-check": "tsc --noEmit"
},
"dependencies": {
"ioredis": "^5.3.2",
"@the-order/shared": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.10.6",
"typescript": "^5.3.3"
}
}