> For the complete documentation index, see [llms.txt](https://intercode.gitbook.io/intercode-saas-kit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://intercode.gitbook.io/intercode-saas-kit/getting-started/technology-stack.md).

# Technology stack

## Backend

About their versions, please read [Dependencies ](/intercode-saas-kit/basics/dependencies.md)block. How they work - please read all related blocks.

**Nest.JS -** as main backend framework

**Cloud services AWS S3 and Minio (S3 compatible storage service)** - as file storages

**Database and ORM:**

* PostgreSQL.
* ORM: `typeorm`, `typeorm-extension`.

**Authentication and authorization:**

* `passport`, `passport-jwt` – basic authentication and JWT.
* OAuth:
  * `passport-facebook`.
  * `passport-google-oauth2`.

**Email service and errors notifications:**

* `@sendgrid/mail` – SendGrid integration for email.
* `@sentry/nestjs` – Sentry error monitoring.

**Payment service:**

* Stripe: `stripe`, `@golevelup/nestjs-stripe`.

***

## **Frontend**

* **React**:
  * `react`, `react-dom` – frontend base.
  * `react-router-dom` – routing.
* **Animation**: `framer-motion`.

**User interface (UI):**

* **Ant Design**:
  * `antd` – main UI components.
  * `antd-img-crop` – cropping images.
* Icons: `@ant-design/icons`, `@flaticon/flaticon-uicons`.

**Data visualisation:**

* Chart.js:
  * `chart.js`, `react-chartjs-2`, `chartjs-plugin-datalabels`.

**PDF and files:**

* PDF: `@react-pdf/renderer`, `wkhtmltopdf`.
* Upload files: `@types/multer`.

**Localization** **(i18n):**

* `i18next`, `react-i18next`, `i18next-http-backend`.

***

Shared Utilities and Dependencies

* **HTTP requests**: `axios`.
* **Tokens**: `jsonwebtoken`, `jwt-decode`.
* **Password encryption logic**: `bcryptjs`.
* **Unique identifiers:** `uuid`.
* **Generating fake data**: `@faker-js/faker`.
* **Cleaning up files**: `rimraf`.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://intercode.gitbook.io/intercode-saas-kit/getting-started/technology-stack.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
