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
- Host: GitHub
- URL: https://github.com/nirnejak/pet-food-subscription
- Owner: nirnejak
- License: mit
- Created: 2024-05-20T20:11:20.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-29T10:02:02.000Z (about 2 years ago)
- Last Synced: 2026-03-14T07:14:04.103Z (5 months ago)
- Language: TypeScript
- Homepage: https://pet-food-subscription.vercel.app
- Size: 3.25 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```
---