41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "@mixan/worker",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "dotenv -e ../../.env -c -v WATCH=1 tsup",
|
|
"start": "node dist/index.js",
|
|
"build": "rm -rf dist && tsup",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check \"**/*.{mjs,ts,md,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@bull-board/api": "^5.13.0",
|
|
"@bull-board/express": "^5.13.0",
|
|
"@mixan/db": "workspace:*",
|
|
"@mixan/queue": "workspace:*",
|
|
"bullmq": "^5.1.1",
|
|
"express": "^4.18.2",
|
|
"ramda": "^0.29.1"
|
|
},
|
|
"devDependencies": {
|
|
"@mixan/eslint-config": "workspace:*",
|
|
"@mixan/prettier-config": "workspace:*",
|
|
"@mixan/tsconfig": "workspace:*",
|
|
"@mixan/types": "workspace:*",
|
|
"@types/express": "^4.17.21",
|
|
"@types/ramda": "^0.29.6",
|
|
"eslint": "^8.48.0",
|
|
"prettier": "^3.0.3",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@mixan/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@mixan/prettier-config"
|
|
}
|