├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── index.html ├── manifest.json └── title.png ├── init.sh ├── package.json ├── src └── client │ └── scripts │ ├── app.jsx │ └── entry.jsx └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist/bundle.js 2 | bin/ 3 | node_modules 4 | package 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/dist/title.png -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/init.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/package.json -------------------------------------------------------------------------------- /src/client/scripts/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/src/client/scripts/app.jsx -------------------------------------------------------------------------------- /src/client/scripts/entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/src/client/scripts/entry.jsx -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/skeleton/HEAD/webpack.config.js --------------------------------------------------------------------------------