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

https://github.com/nirnejak/pet-food-subscription

Pet Food Subscription Site
https://github.com/nirnejak/pet-food-subscription

Last synced: 4 months ago
JSON representation

Pet Food Subscription Site

Awesome Lists containing this project

README

          


Next.js TypeScript Starter

---

## Included

- `seo.ts` util to generate SEO metadata
- `manifest.json` for site info
- `classnames` util for easily managing classes

## Additional Packages Used

- Tailwind CSS - for styling
- Framer Motion - for animations
- Akar Icons - library for rounded icons
- use-sound - for using sounds
- React Query - for data fetching and caching

## Available Scripts

**Install Dependencies**

```bash
npm install
```

**Install Git Hooks** (won't let you commit if there are any ESLint issues)

```bash
npm run prepare
```

**Start Development Server**

```bash
npm run dev
```

**Lint all the files**

```bash
npm run lint
```

**Format all files with Prettier**

```bash
npm run format
```

**Check TypeScript issues**

```bash
npm run type-check
```

**Build for Production**

```bash
npm run build
```

**Start Production Server**

```bash
npm start
```

---