generated from tosinamuda/fastreact
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 987 Bytes
/
package.json
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": "app",
"version": "0.0.1",
"description": "A react fastapi monorepo",
"main": "index.js",
"repository": "[email protected]:tosinamuda/react-fastapi-monorepo.git",
"author": "Tosin Amuda <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"concurrently": "^8.2.1"
},
"scripts": {
"start": "concurrently --kill-others-on-fail \"yarn start:frontend\" \"yarn start:backend\"",
"start:frontend": "yarn workspace @app/frontend start",
"start:backend": "yarn workspace @app/backend start",
"dev": "concurrently --kill-others-on-fail \"yarn dev:frontend\" \"yarn dev:backend\"",
"dev:frontend": "yarn workspace @app/frontend dev",
"dev:backend": "yarn workspace @app/backend dev",
"build:frontend": "yarn workspace @app/frontend build",
"test:frontend": "yarn workspace @app/frontend test",
"prompt": "yarn workspace @app/backend prompt"
},
"workspaces": [
"frontend",
"backend"
]
}