## frontend-pricing

### Setup

Make sure your NPM and Node versions are up to date.

```bash
cp .env.shadow .env # initialize environment configuration
yarn --frozen-lockfile # installs all package.json dependencies
npm start # starts dev server
```

### Development

#### Tasks

* `npm start` runs local development server at localhost:8080
* `npm test` to run the linter and unit tests
* `npm run lint` to run only the linter
* `npm run test:unit` to run only the unit tests
* `npm run watch` to run unit tests every time a change is saved
* `npm run bundle` bundles all application js into build/bundle.js

Note: to see all available tasks, run `npm run`.
