https://github.com/fallendeity/glam
https://github.com/fallendeity/glam
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fallendeity/glam
- Owner: FallenDeity
- License: mit
- Created: 2023-07-19T21:06:50.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-23T19:14:13.000Z (almost 3 years ago)
- Last Synced: 2024-12-27T13:23:45.803Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://ecommerce-store-sample.vercel.app
- Size: 18.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Glam
A cosmetics e-commerce store built using next js, sanity and typescript.
# Features
- [x] Modern and responsive UI.
- [x] Integration of payment system (stripe).
- [x] CMS for managing products (sanity).
- [x] Persistent cart over multiple sessions.
- [x] Editable cart.
- [x] Product categories and filters.
- [x] Notification toasts.
- [x] [Youtube Demo](https://youtu.be/zVBGZrwLYt0)
# Demo

# Setup
```bash
$ git clone https://github.com/FallenDeity/Glam
$ cd Glam
$ npm install
```
# Build
```bash
$ npm run build
```
Internally calls for next to build the project.
# Test
```bash
$ npm run test
```
Internally calls for mocha to run the tests.
# Run
```bash
$ npm run dev
```
Internally calls for next to run the project in development mode.
# Others
- `npm run lint` - Runs eslint on the project.
- `npm run lint:fix` - Runs eslint on the project and fixes the errors.
- `npm run prettier` - Runs prettier on the project.
- `npm run prettier:fix` - Runs prettier on the project and fixes the errors.
> **Note**
> Few more commands are available in `package.json` under `scripts` section.