-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 874 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": "upcoming-movies",
"version": "0.1.0",
"description": "A fullstack application that retrieves and lists upcoming movies",
"author": "Marcelo 'Mark' Kopmann",
"license": "MIT",
"private": true,
"workspaces": [
"upcoming-movies-client",
"upcoming-movies-server"
],
"scripts": {
"dev:client": "yarn workspace upcoming-movies-client dev",
"dev:server": "yarn workspace upcoming-movies-server dev",
"dev": "concurrently \"yarn dev:server\" \"wait-on http://localhost:8080 && yarn dev:client\"",
"build:client": "yarn workspace upcoming-movies-client build",
"build:server": "yarn workspace upcoming-movies-server build",
"build": "yarn build:client && yarn build:server",
"start": "yarn workspace upcoming-movies-server start"
},
"devDependencies": {
"concurrently": "^6.2.0",
"wait-on": "^6.0.0"
}
}