Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/manojadams/react-typescript-boilerplate
- Owner: manojadams
- Created: 2023-08-25T20:28:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-26T16:20:40.000Z (over 1 year ago)
- Last Synced: 2023-08-26T18:51:44.917Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 382 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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