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

https://github.com/zgreen/web-project-starter-kit


https://github.com/zgreen/web-project-starter-kit

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

          

# Web project starter kit

I created this repo because I got tired of scaffolding out the same set up for all my web projects.

It uses:

- [next.js](https://nextjs.org/) with [TypeScript](https://www.typescriptlang.org/)
- [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro)
- [prettier](https://prettier.io/)
- [emotion](https://emotion.sh/docs/introduction)
- [swr](https://swr.vercel.app/)

## Use it

```sh
git clone git@github.com:zgreen/web-project-starter-kit.git my-app
cd my-app
npm i
npm run dev
```

## Start in production

```sh
npm run start
```

## TypeScript checks

```sh
npm run tsc
```

## Run tests

```sh
npm run test
```