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
- Host: GitHub
- URL: https://github.com/lucianopaci/react-ts-parcel-boilerplate
- Owner: LucianoPaci
- Created: 2020-09-13T21:28:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-13T22:17:33.000Z (almost 5 years ago)
- Last Synced: 2025-01-17T03:33:02.419Z (5 months ago)
- Topics: eslint, parcel, parcel-boilerplate, react, typescript
- Language: JavaScript
- Homepage:
- Size: 99.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)