-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 850 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
{
"name": "react-microfrontends-spotify",
"version": "1.0.0",
"description": "React Microfrontends Spotify",
"main": "index.js",
"scripts": {
"install:deps": "npm --prefix ./host install && npm --prefix ./remote install",
"dev:host": "npm --prefix ./host run dev",
"dev:remote": "npm --prefix ./remote run dev",
"dev": "run-p dev:*",
"build:host": "npm --prefix ./host run build",
"build:remote": "npm --prefix ./remote run build",
"preview:host": "npm --prefix ./host run build && npm --prefix ./host run preview",
"preview:remote": "npm --prefix ./remote run build && npm --prefix ./remote run preview",
"preview": "run-p preview:*"
},
"author": {
"name": "Giorgio Boa",
"email": "[email protected]",
"url": "https://github.com/gioboa"
},
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}