├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .stylelintrc ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── server ├── node-app-server.js ├── node-proxy.js ├── node-server.js ├── proxy-config.js └── webpack-dev-proxy.js ├── src ├── assets │ └── Dazzle.png ├── components │ ├── AddWidgetDialog.jsx │ ├── Container.jsx │ ├── CustomFrame.jsx │ ├── Dashboard.jsx │ ├── EditBar.jsx │ ├── Header.jsx │ └── widgets │ │ ├── BarChart.js │ │ ├── DoughnutChart.js │ │ ├── LineChart.js │ │ └── util.js ├── index.html ├── index.js └── styles │ └── custom.css └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/package.json -------------------------------------------------------------------------------- /server/node-app-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/server/node-app-server.js -------------------------------------------------------------------------------- /server/node-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/server/node-proxy.js -------------------------------------------------------------------------------- /server/node-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/server/node-server.js -------------------------------------------------------------------------------- /server/proxy-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/server/proxy-config.js -------------------------------------------------------------------------------- /server/webpack-dev-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/server/webpack-dev-proxy.js -------------------------------------------------------------------------------- /src/assets/Dazzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/assets/Dazzle.png -------------------------------------------------------------------------------- /src/components/AddWidgetDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/AddWidgetDialog.jsx -------------------------------------------------------------------------------- /src/components/Container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/Container.jsx -------------------------------------------------------------------------------- /src/components/CustomFrame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/CustomFrame.jsx -------------------------------------------------------------------------------- /src/components/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/EditBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/EditBar.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/widgets/BarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/widgets/BarChart.js -------------------------------------------------------------------------------- /src/components/widgets/DoughnutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/widgets/DoughnutChart.js -------------------------------------------------------------------------------- /src/components/widgets/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/widgets/LineChart.js -------------------------------------------------------------------------------- /src/components/widgets/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/components/widgets/util.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/src/styles/custom.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raathigesh/Dazzle-Starter-Kit/HEAD/webpack.config.js --------------------------------------------------------------------------------