├── README.md ├── meta.js └── template ├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── app.js ├── build └── index_dev.html ├── client ├── App.vue └── main.js ├── config ├── production.webpack.config.js └── webpack.config.js ├── gulpfile.js ├── package.json ├── server └── plugins │ └── HapiWebpackMiddleware │ ├── index.js │ └── package.json └── test ├── api └── spec │ └── apiCall.js └── unit ├── .eslintrc ├── index.js ├── karma.conf.js └── specs └── App.spec.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/README.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/meta.js -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/README.md -------------------------------------------------------------------------------- /template/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/app.js -------------------------------------------------------------------------------- /template/build/index_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/build/index_dev.html -------------------------------------------------------------------------------- /template/client/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/client/App.vue -------------------------------------------------------------------------------- /template/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/client/main.js -------------------------------------------------------------------------------- /template/config/production.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/config/production.webpack.config.js -------------------------------------------------------------------------------- /template/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/config/webpack.config.js -------------------------------------------------------------------------------- /template/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/gulpfile.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/package.json -------------------------------------------------------------------------------- /template/server/plugins/HapiWebpackMiddleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/server/plugins/HapiWebpackMiddleware/index.js -------------------------------------------------------------------------------- /template/server/plugins/HapiWebpackMiddleware/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hapi-webpack-middleware" 3 | } 4 | -------------------------------------------------------------------------------- /template/test/api/spec/apiCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/test/api/spec/apiCall.js -------------------------------------------------------------------------------- /template/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/test/unit/.eslintrc -------------------------------------------------------------------------------- /template/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/test/unit/index.js -------------------------------------------------------------------------------- /template/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/test/unit/karma.conf.js -------------------------------------------------------------------------------- /template/test/unit/specs/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Belar/hapi-vue/HEAD/template/test/unit/specs/App.spec.js --------------------------------------------------------------------------------