# <%= applicationName %>

> Welcome to your new Sophon React app.

## Build Scripts

### Install Dependencies

```sh
<%= packageManager %> install
```

### Start Local Server on Port 8080

```sh
<%= packageManager %> start
```

### Run Linting

```sh
<%= cmd %> lint
```

### Run Linting with Fix

```sh
<%= cmd %> lint:fix
```

### Run Style Linting

```sh
<%= cmd %> stylelint
```

### Run Style Linting with Fix

```sh
<%= cmd %> stylelint:fix
```

### Run Unit Tests

```sh
<%= packageManager %> test
```

### Run Unit Tests with Coverage Report

```sh
<%= cmd %> test:coverage
```

### Run Unit Tests with Verbose Results

```sh
<%= cmd %> test:verbose
```

### Run Unit Tests and Watch for Changes

```sh
<%= cmd %> test:watch
```

### Build for Production

```sh
<%= cmd %> build
```

### Build for Production with Bundle Analyzer Report

```sh
<%= cmd %> build:report
```

### Generate Documentation

```sh
<%= cmd %> docs
```

### Remove Output Directories

```sh
<%= cmd %> clean
```

## Technical Requirements

> The runtime environment for this application requires `node >= <%= nodeVersion %>` and `<%= packageManager %> >= <%= packageManagerVersion %>`.

## Configuration

> This application makes use of `ESLint`, `Stylelint` and `EditorConfig`. Each of these features requires
> an extension be installed in order to work properly with IDEs and text editors such as VSCode.