├── .browserslistrc ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── pipeline-dev-pr.yml │ ├── pipeline-dev-push.yml │ ├── pipeline-prod-pr.yml │ ├── pipeline-prod-push.yml │ ├── pipeline-stage-pr.yml │ └── pipeline-stage-push.yml ├── .gitignore ├── Dockerfile ├── README.md ├── angular.json ├── azure-pipelines.yml ├── compose.yml ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── component │ │ └── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ ├── model │ │ ├── address.spec.ts │ │ ├── address.ts │ │ ├── cart.spec.ts │ │ ├── cart.ts │ │ ├── category.spec.ts │ │ ├── category.ts │ │ ├── credential.spec.ts │ │ ├── credential.ts │ │ ├── favourite.spec.ts │ │ ├── favourite.ts │ │ ├── order.spec.ts │ │ ├── order.ts │ │ ├── payment.spec.ts │ │ ├── payment.ts │ │ ├── product.spec.ts │ │ ├── product.ts │ │ ├── request │ │ │ ├── authentication-request.spec.ts │ │ │ └── authentication-request.ts │ │ ├── response │ │ │ ├── authentication-response.spec.ts │ │ │ ├── authentication-response.ts │ │ │ └── collection │ │ │ │ ├── cart-dto-collection-response.spec.ts │ │ │ │ ├── cart-dto-collection-response.ts │ │ │ │ ├── category-dto-collection-response.spec.ts │ │ │ │ ├── category-dto-collection-response.ts │ │ │ │ ├── credential-dto-collection-response.spec.ts │ │ │ │ ├── credential-dto-collection-response.ts │ │ │ │ ├── favourite-dto-collection-response.spec.ts │ │ │ │ ├── favourite-dto-collection-response.ts │ │ │ │ ├── order-dto-collection-response.spec.ts │ │ │ │ ├── order-dto-collection-response.ts │ │ │ │ ├── payment-dto-collection-response.spec.ts │ │ │ │ ├── payment-dto-collection-response.ts │ │ │ │ ├── product-dto-collection-response.spec.ts │ │ │ │ ├── product-dto-collection-response.ts │ │ │ │ ├── shipping-dto-collection-response.spec.ts │ │ │ │ ├── shipping-dto-collection-response.ts │ │ │ │ ├── user-dto-collection-response.spec.ts │ │ │ │ └── user-dto-collection-response.ts │ │ ├── shipping.spec.ts │ │ ├── shipping.ts │ │ ├── user.spec.ts │ │ ├── user.ts │ │ ├── verification-token.spec.ts │ │ └── verification-token.ts │ └── service │ │ ├── authentication.service.spec.ts │ │ ├── authentication.service.ts │ │ ├── category.service.spec.ts │ │ ├── category.service.ts │ │ ├── product.service.spec.ts │ │ ├── product.service.ts │ │ ├── user.service.spec.ts │ │ └── user.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.github/workflows/pipeline-dev-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-dev-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.github/workflows/pipeline-dev-push.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-prod-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.github/workflows/pipeline-prod-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-prod-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.github/workflows/pipeline-prod-push.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-stage-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.github/workflows/pipeline-stage-pr.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-stage-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.github/workflows/pipeline-stage-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/angular.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/compose.yml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/component/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/component/home/home.component.css -------------------------------------------------------------------------------- /src/app/component/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/component/home/home.component.html -------------------------------------------------------------------------------- /src/app/component/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/component/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/component/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/component/home/home.component.ts -------------------------------------------------------------------------------- /src/app/model/address.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/address.spec.ts -------------------------------------------------------------------------------- /src/app/model/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/address.ts -------------------------------------------------------------------------------- /src/app/model/cart.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/cart.spec.ts -------------------------------------------------------------------------------- /src/app/model/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/cart.ts -------------------------------------------------------------------------------- /src/app/model/category.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/category.spec.ts -------------------------------------------------------------------------------- /src/app/model/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/category.ts -------------------------------------------------------------------------------- /src/app/model/credential.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/credential.spec.ts -------------------------------------------------------------------------------- /src/app/model/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/credential.ts -------------------------------------------------------------------------------- /src/app/model/favourite.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/favourite.spec.ts -------------------------------------------------------------------------------- /src/app/model/favourite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/favourite.ts -------------------------------------------------------------------------------- /src/app/model/order.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/order.spec.ts -------------------------------------------------------------------------------- /src/app/model/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/order.ts -------------------------------------------------------------------------------- /src/app/model/payment.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/payment.spec.ts -------------------------------------------------------------------------------- /src/app/model/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/payment.ts -------------------------------------------------------------------------------- /src/app/model/product.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/product.spec.ts -------------------------------------------------------------------------------- /src/app/model/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/product.ts -------------------------------------------------------------------------------- /src/app/model/request/authentication-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/request/authentication-request.spec.ts -------------------------------------------------------------------------------- /src/app/model/request/authentication-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/request/authentication-request.ts -------------------------------------------------------------------------------- /src/app/model/response/authentication-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/authentication-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/authentication-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/authentication-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/cart-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/cart-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/cart-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/cart-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/category-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/category-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/category-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/category-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/credential-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/credential-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/credential-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/credential-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/favourite-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/favourite-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/favourite-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/favourite-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/order-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/order-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/order-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/order-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/payment-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/payment-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/payment-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/payment-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/product-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/product-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/product-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/product-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/shipping-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/shipping-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/shipping-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/shipping-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/user-dto-collection-response.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/user-dto-collection-response.spec.ts -------------------------------------------------------------------------------- /src/app/model/response/collection/user-dto-collection-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/response/collection/user-dto-collection-response.ts -------------------------------------------------------------------------------- /src/app/model/shipping.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/shipping.spec.ts -------------------------------------------------------------------------------- /src/app/model/shipping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/shipping.ts -------------------------------------------------------------------------------- /src/app/model/user.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/user.spec.ts -------------------------------------------------------------------------------- /src/app/model/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/user.ts -------------------------------------------------------------------------------- /src/app/model/verification-token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/verification-token.spec.ts -------------------------------------------------------------------------------- /src/app/model/verification-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/model/verification-token.ts -------------------------------------------------------------------------------- /src/app/service/authentication.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/authentication.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/authentication.service.ts -------------------------------------------------------------------------------- /src/app/service/category.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/category.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/category.service.ts -------------------------------------------------------------------------------- /src/app/service/product.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/product.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/product.service.ts -------------------------------------------------------------------------------- /src/app/service/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/service/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/app/service/user.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SelimHorri/ecommerce-frontend-web-app/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------