Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manojadams/react-typescript-boilerplate

This project demonstrates minimum dependencies required for a react typescript project without using any middleware packages.
https://github.com/manojadams/react-typescript-boilerplate

Last synced: 7 days ago
JSON representation

This project demonstrates minimum dependencies required for a react typescript project without using any middleware packages.

Awesome Lists containing this project

README

        

# React Typescript Boilerplate
This project demonstrates the minimum number of packages required to get started with a basic react typescript project.

## Major components
- React & react-dom
- Typescript
- Babel
- Webpack

### React, react-dom
These are react depdendencies. Other react depdendencies required apart from this:
- @types/react
- @types/react-dom

### Babel
Babel converts react tsx to javascript. Following dependencies required are:
- @babel/core
- @babel/preset-env
- @babel/preset-react
- @babel/preset-typescript
- babel-loader

### Webpack
This is the bundling software that bundles all code into different files. Dependencies are:
- webpack
- webpack-cli
- webpack-dev-server
- HtmlWebpackPlugin