-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "ai-workflow-engine",
"version": "1.0.0",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"db:start": "docker compose -f docker-compose.db.dev.yml up -d",
"db:stop": "docker compose -f docker-compose.db.dev.yml down",
"db:logs": "docker compose -f docker-compose.db.dev.yml logs -f",
"db:console": "docker compose -f docker-compose.db.dev.yml exec postgres psql -U postgres -d ai_workflow_dev",
"dev": "tsx watch src/index.ts",
"build": "tsc --noEmit",
"dev:mcp-tavily": "tsx watch src/mcp-servers/tavily/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"dotenv": "^17.3.1",
"prisma": "^7.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@notionhq/client": "^5.9.0",
"@prisma/adapter-better-sqlite3": "^7.4.0",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"express": "^5.2.1",
"openai": "^6.21.0",
"zod": "^4.3.6"
}
}