From 829421b8bd9d82eaf01dd019a1e99df767f30fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Fri, 23 Nov 2018 17:51:43 -0500 Subject: [PATCH] chore: docs and package json setup --- README.md | 13 +++---------- package.json | 1 + 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c847d3..fe55bdb 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,12 @@ Reference Wallet for the Zcash Network ## Stack Information +- [Electron](https://github.com/electron/electron): desktop application builder - [React](https://facebook.github.io/react/): UI view layer - [Redux](http://redux.js.org/): predictable state container - [Webpack](http://webpack.github.io/): module bundler -- [Webpack-Dev-Server](https://webpack.github.io/docs/webpack-dev-server.html): development server -- [Babel](http://babeljs.io/): ES6/JSX transpilling +- [Webpack Development Server](https://webpack.github.io/docs/webpack-dev-server.html): development server +- [Babel](http://babeljs.io/): ES7/JSX transpilling - [ESLint](http://eslint.org/): code rules and linting - [React Router](https://github.com/reactjs/react-router): routing solution for react @@ -26,14 +27,6 @@ To run the application on port 8080 yarn dev ``` -## Webpack Bundle Analysis - -To visualize the bundle size of your application - -```bash -yarn analyze -``` - ## License © Zcash Foundation 2018 \ No newline at end of file diff --git a/package.json b/package.json index a16674f..b5bc4b9 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "0.1.0", "description": "Zcash Reference Wallet", "main": "index.js", + "license": "MIT", "scripts": { "start": "yarn dev", "dev": "webpack-dev-server --config config/webpack-dev.config.js --mode development --open --hot",