# Durandal Redux Webpack

This is a sample project that demonstrates the use of Webpack with Durandal and Redux to bundle the SPA.

## Quickstart

Install the package dependencies with
```
npm install
```

Start webpack and navigate to `localhost:8080` with
```
npm run dev
```

## Build
Production bundle
```
npm run build
```
Then build files will be in the `dist` folder.

## Test
Run all tests
```
npm run test
```

To watch tests as you are developing
```
npm run test:watch
```