-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "automation-executor",
"version": "1.0.0",
"description": "Standalone automation executor for JSON workflows with HTTP, webhooks, and scheduling",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"uuid": "^9.0.0",
"vm2": "^3.9.19"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.0",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"jest": "^29.6.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}