-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 973 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 973 Bytes
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
{
"name": "@podbot/root",
"version": "1.0.0",
"description": "PodBot - Chat API with Redis Agent Memory Server on Azure",
"author": "Guy Royse <guy@guy.dev>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "npm-run-all --sequential build dev:web",
"dev:web": "cd web && npm run dev",
"dev:api": "cd api && npm run dev",
"build": "npm-run-all --parallel build:api build:web",
"build:web": "cd web && npm run clean && npm install && npm run build",
"build:api": "cd api && npm run clean && npm install && npm run build",
"clean": "npm-run-all --parallel clean:api clean:web",
"clean:web": "cd web && npm run clean",
"clean:api": "cd api && npm run clean",
"install:all": "npm-run-all --parallel install:web install:api",
"install:web": "cd web && npm install",
"install:api": "cd api && npm install"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}