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

https://github.com/lucianopaci/react-ts-parcel-boilerplate

React-Typescript-Parcel-ESLint-Prettier boilerplate
https://github.com/lucianopaci/react-ts-parcel-boilerplate

eslint parcel parcel-boilerplate react typescript

Last synced: 3 months ago
JSON representation

React-Typescript-Parcel-ESLint-Prettier boilerplate

Awesome Lists containing this project

README

        

# React/Typescript/Parcel/ESLint/Prettier Boilerplate

This project uses

- [React](https://reactjs.org/)
- [Typescript](https://www.typescriptlang.org/)
- [Parcel](https://parceljs.org/)
- [ESLint](https://eslint.org/)
- [Prettier](https://prettier.io/)
- [Husky](https://github.com/typicode/husky) and [Lint-Staged](https://github.com/okonet/lint-staged)

## Building and running on localhost

First install dependencies:

```sh
npm install
```

To run in hot module reloading mode:

```sh
npm start
```

To create a production build:

```sh
npm run build-prod
```

## Running

Open the file `dist/index.html` in your browser

## Credits

- Made with [createapp.dev](https://createapp.dev/)
- [Building a React app with Parcel, Typescript, SASS, and ESLint](https://adrianhall.github.io/javascript/react/2020/03/29/parcel-typescript-react/)