In this part we create our new project and add our initial package.json file for npm to save dependencies. We'll also go ahead and add our two main dependencies, ava and babel with the es2015 preset.
$ npm init -y
$ npm install --save-dev ava babel babel-preset-es2015
We are using the es2015 preset to give our unit tests the import and export keywords.