fp/packages/temporal-workflows/package.json

38 lines
1.0 KiB
JSON
Raw Normal View History

2024-07-10 02:34:23 +00:00
{
2024-07-15 16:07:04 +00:00
"name": "@futureporn/temporal-workflows",
2024-07-10 02:34:23 +00:00
"version": "0.0.1",
"private": true,
"type": "module",
2024-07-14 05:20:35 +00:00
"exports": {
"./workflows.js": "./dist/workflows.js",
"./activities.js": "./dist/activities.js"
},
2024-07-10 02:34:23 +00:00
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build -w --preserveWatchOutput",
"lint": "eslint ."
},
"dependencies": {
"@temporalio/activity": "^1.10.1",
"@temporalio/workflow": "^1.10.1",
2024-07-10 22:11:18 +00:00
"@types/qs": "^6.9.15",
2024-07-10 02:34:23 +00:00
"date-fns": "^3.6.0",
2024-07-15 16:07:04 +00:00
"@futureporn/image": "workspace:*",
2024-07-10 02:34:23 +00:00
"qs": "^6.12.3",
2024-07-15 16:07:04 +00:00
"@futureporn/scout": "workspace:^",
"@futureporn/storage": "workspace:^",
"@futureporn/types": "workspace:*",
"@futureporn/utils": "workspace:*"
2024-07-10 02:34:23 +00:00
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
2024-07-10 02:34:23 +00:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-deprecation": "^1.5.0",
2024-07-14 05:20:35 +00:00
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
2024-07-10 02:34:23 +00:00
}
}