forked from gits-lit/demeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 840 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
{
"name": "hackiowa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start" : "yarn --cwd ./backend start",
"dev" : "concurrently --kill-others \"yarn --cwd ./analysis build-watch\" \"yarn --cwd ./frontend start\" \"yarn --cwd ./backend dev\"",
"frontend": "concurrently --kill-others \"yarn --cwd ./analysis build-watch\" \"yarn --cwd ./frontend start\"",
"backend" : "yarn --cwd ./backend dev",
"build" : "yarn install --production=false && yarn --cwd ./backend build",
"build-frontend": "yarn install --production=false && yarn --cwd ./analysis build && yarn --cwd ./frontend build"
},
"author": "trulyronak",
"license": "ISC",
"private": true,
"workspaces": [
"backend",
"frontend",
"analysis"
],
"dependencies": {
"concurrently": "^6.0.2"
}
}