-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 735 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "agentforce",
"version": "1.1.2",
"description": "Enterprise dashboard for AgentChat - chat, channels, agents, file transfer, network graph",
"scripts": {
"start": "cd server && npm start",
"dev": "concurrently \"cd server && npm run dev\" \"cd web && npm run dev\"",
"dev:server": "cd server && npm run dev",
"dev:web": "cd web && npm run dev",
"build": "cd web && npm run build",
"build:server": "cd server && npm run build",
"typecheck": "cd web && npm run typecheck && cd ../server && npm run typecheck",
"install:all": "cd server && npm install && cd ../web && npm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}