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

https://github.com/jaredsburrows/jaredsburrows.github.io

Jared's GitHub Pages
https://github.com/jaredsburrows/jaredsburrows.github.io

Last synced: 10 months ago
JSON representation

Jared's GitHub Pages

Awesome Lists containing this project

README

          

# Jared's GitHub Pages

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![website](https://github.com/jaredsburrows/jaredsburrows.github.io/actions/workflows/website.yml/badge.svg?branch=main)](https://github.com/jaredsburrows/jaredsburrows.github.io/actions/workflows/website.yml)
[![Twitter Follow](https://img.shields.io/twitter/follow/jaredsburrows.svg?style=social)](https://twitter.com/jaredsburrows)

## Run Locally
```shell
npm install && npm run dev
```

## Run Linter
```shell
npm run lint
```

## Build Website
```shell
npm run build
```

## Update Dependencies Manually

```shell
rm -f package-lock.json && \
npm update && \
npm outdated && \
npm audit fix --force && \
npm install
```