-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.08 KB
/
package.json
File metadata and controls
34 lines (34 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
{
"name": "support-bot-rag",
"version": "1.0.0",
"private": true,
"description": "Support Bot with RAG - Mono-repo OrkaJS project",
"workspaces": [
"apps/frontend",
"apps/backend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=apps/backend",
"dev:frontend": "npm run dev --workspace=apps/frontend",
"build": "npm run build --workspaces",
"build:backend": "npm run build --workspace=apps/backend",
"build:frontend": "npm run build --workspace=apps/frontend",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "npm run start:prod --workspace=apps/backend",
"start:frontend": "npm run start --workspace=apps/frontend",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"orkajs": "file:../Orka-ai"
}
}