Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/megasanjay/scholar-stack
https://github.com/megasanjay/scholar-stack
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/megasanjay/scholar-stack
- Owner: megasanjay
- Created: 2023-05-18T16:55:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-22T19:58:16.000Z (12 months ago)
- Last Synced: 2024-05-01T18:25:14.676Z (8 months ago)
- Language: TypeScript
- Size: 1.03 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scholar Stack
## Features
This starter simple project powered by bellow tools out of the box!
- ⚡️ Next.js 13
- 🆕 app directory and great folder structure.
- ⚛️ React 18
- ☑️ TypeScript
- 🪡 Tailwind CSS 3 — Configured with the official Tailwind Plugins
- 📈 Absolute Import and Path Alias — Import components using `@/` prefix
- 📏 ESLint — Find and fix problems in your code.
- 💖 Prettier — Format your code consistently
- 🐶 Husky & Lint Staged — Run scripts on your staged files before they are committed## Getting Started
### 1. Installing dependencies
you can install its dependencies with any tools which you use, but inside the project I used yarn for pre-commit commands.
so better to use yarn.```bash
npm install
or
yarn
or
pnpm install
```### 2. run the dev server
First, run the development server:
```bash
npm run dev
or
yarn dev
or
pnpm dev
```