-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.25 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
42
43
44
45
{
"name": "automation-engine",
"version": "0.1.0",
"description": "Developer-first automation engine with webhook triggers and linear step execution",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx watch src/api/server.ts",
"dev:worker": "tsx watch src/workers/execute/worker.ts",
"dev:ai-worker": "tsx watch src/workers/ai/worker.ts",
"build": "tsc",
"start": "node dist/api/server.js",
"start:worker": "node dist/workers/execute/worker.js",
"start:ai-worker": "node dist/workers/ai/worker.js",
"migrate": "tsx src/storage/migrate.ts",
"seed": "tsx scripts/seed.ts",
"test": "vitest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/awilix": "^8.2.0",
"@fastify/cors": "^10.0.1",
"awilix": "^12.0.5",
"bullmq": "^5.30.1",
"dotenv": "^17.2.3",
"fastify": "^5.1.0",
"ioredis": "^5.4.1",
"jsonata": "^2.0.5",
"nanoid": "^5.0.9",
"pg": "^8.13.1",
"pino": "^9.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@vitest/coverage-v8": "^2.1.9",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}