-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1002 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 1002 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
29
30
{
"name": "agent-demo",
"version": "1.0.0",
"description": "A website agent demo using ATXP with Express backend and React frontend",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "npm run server:prod",
"server": "cd backend && npm run dev",
"server:prod": "cd backend && npm start",
"client": "cd frontend && npm start",
"client:prod": "echo 'In production mode, frontend is served by backend. Use npm start instead.'",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"setup": "npm run install-all && npm run build"
},
"keywords": [
"express",
"react",
"atxp",
"agent"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}