This is a sample Grommet application for reference.
To run this application, execute the following commands:
- Install NPM modules
```
$ npm install (or yarn install)
```
- Start the front-end dev server:
```
$ npm run dev
```
- Create the app distribution to be used by a back-end server
```
$ NODE_ENV=production grommet pack
```
- Test and run linters:
```
$ npm test
```