├── .github ├── FUNDING.yml └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── app-shell ├── .editorconfig ├── .npmignore ├── package-lock.json ├── package.json ├── prettier.config.js ├── src │ ├── index.html │ ├── index.tsx │ ├── mocks │ │ └── backend.js │ └── page.css └── tsconfig.json ├── install.sh ├── publish.sh ├── run.sh ├── team-blue ├── .editorconfig ├── package-lock.json ├── package.json ├── prettier.config.js ├── src │ ├── BasketInfo.tsx │ ├── BuyButton.tsx │ ├── index.tsx │ └── prices.tsx └── tsconfig.json ├── team-green ├── .editorconfig ├── package-lock.json ├── package.json ├── prettier.config.js ├── src │ ├── Recommendations.tsx │ ├── images │ │ ├── reco_1.jpg │ │ ├── reco_2.jpg │ │ ├── reco_3.jpg │ │ ├── reco_4.jpg │ │ ├── reco_5.jpg │ │ ├── reco_6.jpg │ │ ├── reco_7.jpg │ │ ├── reco_8.jpg │ │ └── reco_9.jpg │ ├── index.tsx │ └── recos.ts └── tsconfig.json └── team-red ├── .editorconfig ├── jest.config.js ├── package-lock.json ├── package.json ├── prettier.config.js ├── src ├── ProductPage.test.tsx ├── ProductPage.tsx ├── images │ ├── tractor-blue-thumb.jpg │ ├── tractor-blue.jpg │ ├── tractor-green-thumb.jpg │ ├── tractor-green.jpg │ ├── tractor-red-thumb.jpg │ └── tractor-red.jpg ├── index.tsx ├── product.tsx └── sample.test.tsx └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/README.md -------------------------------------------------------------------------------- /app-shell/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/.editorconfig -------------------------------------------------------------------------------- /app-shell/.npmignore: -------------------------------------------------------------------------------- 1 | .cache 2 | dist 3 | -------------------------------------------------------------------------------- /app-shell/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/package-lock.json -------------------------------------------------------------------------------- /app-shell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/package.json -------------------------------------------------------------------------------- /app-shell/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/prettier.config.js -------------------------------------------------------------------------------- /app-shell/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/src/index.html -------------------------------------------------------------------------------- /app-shell/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/src/index.tsx -------------------------------------------------------------------------------- /app-shell/src/mocks/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/src/mocks/backend.js -------------------------------------------------------------------------------- /app-shell/src/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/src/page.css -------------------------------------------------------------------------------- /app-shell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/app-shell/tsconfig.json -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/install.sh -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/publish.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/run.sh -------------------------------------------------------------------------------- /team-blue/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/.editorconfig -------------------------------------------------------------------------------- /team-blue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/package-lock.json -------------------------------------------------------------------------------- /team-blue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/package.json -------------------------------------------------------------------------------- /team-blue/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/prettier.config.js -------------------------------------------------------------------------------- /team-blue/src/BasketInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/src/BasketInfo.tsx -------------------------------------------------------------------------------- /team-blue/src/BuyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/src/BuyButton.tsx -------------------------------------------------------------------------------- /team-blue/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/src/index.tsx -------------------------------------------------------------------------------- /team-blue/src/prices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/src/prices.tsx -------------------------------------------------------------------------------- /team-blue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-blue/tsconfig.json -------------------------------------------------------------------------------- /team-green/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/.editorconfig -------------------------------------------------------------------------------- /team-green/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/package-lock.json -------------------------------------------------------------------------------- /team-green/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/package.json -------------------------------------------------------------------------------- /team-green/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/prettier.config.js -------------------------------------------------------------------------------- /team-green/src/Recommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/Recommendations.tsx -------------------------------------------------------------------------------- /team-green/src/images/reco_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_1.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_2.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_3.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_4.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_5.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_6.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_7.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_8.jpg -------------------------------------------------------------------------------- /team-green/src/images/reco_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/images/reco_9.jpg -------------------------------------------------------------------------------- /team-green/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/index.tsx -------------------------------------------------------------------------------- /team-green/src/recos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/src/recos.ts -------------------------------------------------------------------------------- /team-green/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-green/tsconfig.json -------------------------------------------------------------------------------- /team-red/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/.editorconfig -------------------------------------------------------------------------------- /team-red/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('piral-jest-utils').default; 2 | -------------------------------------------------------------------------------- /team-red/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/package-lock.json -------------------------------------------------------------------------------- /team-red/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/package.json -------------------------------------------------------------------------------- /team-red/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/prettier.config.js -------------------------------------------------------------------------------- /team-red/src/ProductPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/ProductPage.test.tsx -------------------------------------------------------------------------------- /team-red/src/ProductPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/ProductPage.tsx -------------------------------------------------------------------------------- /team-red/src/images/tractor-blue-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/images/tractor-blue-thumb.jpg -------------------------------------------------------------------------------- /team-red/src/images/tractor-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/images/tractor-blue.jpg -------------------------------------------------------------------------------- /team-red/src/images/tractor-green-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/images/tractor-green-thumb.jpg -------------------------------------------------------------------------------- /team-red/src/images/tractor-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/images/tractor-green.jpg -------------------------------------------------------------------------------- /team-red/src/images/tractor-red-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/images/tractor-red-thumb.jpg -------------------------------------------------------------------------------- /team-red/src/images/tractor-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/images/tractor-red.jpg -------------------------------------------------------------------------------- /team-red/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/index.tsx -------------------------------------------------------------------------------- /team-red/src/product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/product.tsx -------------------------------------------------------------------------------- /team-red/src/sample.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/src/sample.test.tsx -------------------------------------------------------------------------------- /team-red/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piral-samples/piral-microfrontend-demo/HEAD/team-red/tsconfig.json --------------------------------------------------------------------------------