42 lines
1002 B
JSON
42 lines
1002 B
JSON
{
|
|
"name": "cron-workflows",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"build.watch": "tsc --build --watch",
|
|
"lint": "eslint .",
|
|
"start": "ts-node src/worker.ts",
|
|
"start.watch": "nodemon src/worker.ts",
|
|
"workflow": "ts-node src/client.ts"
|
|
},
|
|
"nodemonConfig": {
|
|
"execMap": {
|
|
"ts": "ts-node"
|
|
},
|
|
"ext": "ts",
|
|
"watch": [
|
|
"src"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@temporalio/activity": "^1.9.0",
|
|
"@temporalio/client": "^1.9.0",
|
|
"@temporalio/worker": "^1.9.0",
|
|
"@temporalio/workflow": "^1.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node18": "^1.0.0",
|
|
"@types/node": "^16.11.43",
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-deprecation": "^1.2.1",
|
|
"nodemon": "^2.0.12",
|
|
"prettier": "^2.8.8",
|
|
"ts-node": "^10.2.1",
|
|
"typescript": "^4.4.2"
|
|
}
|
|
}
|