-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 795 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@react-agent/root",
"description": "ReactAgent",
"license": "MIT",
"author": "eylonmiz <eylon@tutim.io>",
"repository": "https://github.com/eylonmiz/react-agent",
"workspaces": [
"frontend/*",
"backend/*"
],
"scripts": {
"backend:dev": "yarn workspace @react-agent/backend-main dev",
"frontend:tailwind": "yarn workspace @react-agent/shadcn-ui tailwind && yarn workspace @react-agent/frontend-main tailwind",
"frontend:tailwind:watch": "yarn workspace @react-agent/shadcn-ui tailwind --watch && yarn workspace @react-agent/frontend-main tailwind --watch",
"frontend:dev": "yarn frontend:tailwind && yarn workspace @react-agent/frontend-main dev",
"frontend:build": "yarn workspace @react-agent/frontend-main build"
},
"private": true
}