# frontend-reporting

## Installing

Use the node and package manager versions declared in [`package.json`](./package.json) (`engines` and `packageManager`). Anything else is unsupported.

Initialize environment configuration:

```shell
cp .env.shadow .env
```

Install dependencies

```shell
yarn
```

## Running

_Note: You will need to be on the VPN (or in the NYC office) to be able to access QA services._

Run the local development server:

```shell
yarn start
```

## Testing

Run the linter and the tests:

```shell
yarn test
```

Run the linter independently:

```shell
yarn lint
```

Run the unit tests independently:

```shell
yarn test:unit
```
