-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 869 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 869 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
{
"name": "ad-generator",
"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\"",
"server": "cd backend && npm run dev",
"client": "cd frontend && npm start",
"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 && npm run build && cd ../frontend && npm install",
"start": "concurrently \"cd backend && npm start\" \"cd frontend && npm start\""
},
"keywords": [
"express",
"react",
"atxp",
"agent"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}