fp/packages/temporal-workflows/package.json

38 lines
1.1 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-19 08:01:06 +00:00
"version": "1.0.0",
2024-07-10 02:34:23 +00:00
"private": true,
"type": "module",
2024-07-14 05:20:35 +00:00
"exports": {
2024-07-19 08:01:06 +00:00
"./workflows": "./src/workflows.ts",
"./activities": "./src/activities.ts"
2024-07-14 05:20:35 +00:00
},
2024-07-10 02:34:23 +00:00
"scripts": {
2024-07-16 10:46:44 +00:00
"lint": "eslint .",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
2024-07-10 02:34:23 +00:00
},
"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",
"qs": "^6.12.3",
2024-07-18 18:42:54 +00:00
"@futureporn/image": "workspace:*",
2024-07-16 10:46:44 +00:00
"@futureporn/scout": "workspace:*",
"@futureporn/storage": "workspace:*",
2024-07-15 16:07:04 +00:00
"@futureporn/types": "workspace:*",
2024-07-16 06:57:27 +00:00
"@futureporn/utils": "workspace:*",
"@futureporn/temporal-workflows": "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
}
}