forked from alvcuevas/sneakers-store-mfe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
26 lines (26 loc) · 1.2 KB
/
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": "sneakers-store-mfe",
"version": "1.0.0",
"description": "Sneakers store using MFE architecture",
"main": "index.js",
"scripts": {
"install-host-deps": "cd host && cd homepage && npm install",
"install-searchbar-deps": "cd remotes && cd searchbar && npm install",
"install-productlist-deps": "cd remotes && cd productlist && npm install",
"install-cart-deps": "cd remotes && cd cart && npm install",
"install-remotes-deps": "concurrently \"npm run install-searchbar-deps\" \"npm run install-productlist-deps\" \"npm run install-cart-deps\"",
"install-deps": "npm install && concurrently \"npm run install-host-deps\" \"npm run install-remotes-deps\"",
"searchbar": "cd remotes && cd searchbar && npm start",
"productlist": "cd remotes && cd productlist && npm start",
"cart": "cd remotes && cd cart && npm start",
"homepage": "cd host && cd homepage && npm start",
"remotes": "concurrently \"npm run searchbar\" \"npm run productlist\" \"npm run cart\"",
"sneakers-store": "concurrently \"npm run homepage\" \"npm run remotes\""
},
"keywords": [],
"author": "Álvaro Cuevas",
"license": "ISC",
"dependencies": {
"concurrently": "^8.0.1"
}
}