|
24 | 24 | ## Stack
|
25 | 25 |
|
26 | 26 | * [x] [yarn](https://github.com/yarnpkg/yarn) - dependency manager
|
27 |
| -* [x] [express](http://expressjs.com/) - node.js framework for backend |
| 27 | +* [x] [express](http://expressjs.com/) - node.js web framework for backend |
28 | 28 | * [x] [materialize](http://materializecss.com/) - a modern responsive front-end framework based on Material Design
|
29 | 29 | * [x] [sass](https://github.com/sass/sass) - CSS pre-processors
|
30 | 30 | * [x] [postcss](https://github.com/postcss/postcss) - CSS post-processor
|
31 | 31 | * [x] [webpack 4](https://github.com/webpack/webpack) - module bundler
|
32 | 32 | * [x] [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) - offers a dev middleware for webpack, which arguments a live bundle to a directory
|
33 | 33 | * [x] [webpack-hot-middleware](https://github.com/glenjamin/webpack-hot-middleware) - add hot reloading into an existing server without [webpack-dev-server](https://github.com/webpack/webpack-dev-server)
|
34 | 34 | * [x] followed [ES6 standard](https://github.com/lukehoban/es6features)
|
35 |
| -* [x] [babel](https://babeljs.io/) - compile ES6 to ES5 |
36 |
| -* [x] [react](https://facebook.github.io/react/) - building user interfaces |
| 35 | +* [x] [babel](https://babeljs.io/) - a JavaScript compiler that compile ES6 to ES5 |
| 36 | +* [x] [react](https://facebook.github.io/react/) - a JavaScript library for building user interfaces |
37 | 37 | * [x] [react-hot-loader 4](https://github.com/gaearon/react-hot-loader) - hot module reload!
|
38 |
| -* [x] [react-router 4](https://github.com/ReactTraining/react-router) - routing |
39 |
| -* [x] [react-redux](https://github.com/reactjs/react-redux) - the official react bindings for [redux](https://github.com/reactjs/redux) (a predictable state container for js apps) |
40 |
| -* [x] [connected-react-router](https://github.com/supasate/connected-react-router) - a redux binding for react-router 4, currently a replacement for [react-router-redux v5](https://github.com/ReactTraining/react-router/tree/master/packages/react-router-redux) |
| 38 | +* [x] [react-router 4](https://github.com/ReactTraining/react-router) - declarative routing for React |
| 39 | +* [x] [react-redux](https://github.com/reactjs/react-redux) - the official react bindings for [redux 4](https://github.com/reactjs/redux) (a predictable state container for js apps) |
| 40 | +* [x] [connected-react-router](https://github.com/supasate/connected-react-router) - a redux binding for react-router 4, the replacement for [react-router-redux v5](https://github.com/ReactTraining/react-router/tree/master/packages/react-router-redux) |
41 | 41 | * [x] [immutable.js](https://github.com/facebook/immutable-js/) - persistent Immutable data structures for react redux state management
|
42 | 42 | * [x] [Typescript](https://github.com/Microsoft/TypeScript) - a typed superset of javascript that scales
|
43 | 43 | * [x] [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) - high quality TypeScript type definitions
|
44 | 44 | * [x] [editorconfig](http://editorconfig.org/) - maintain consistent coding styles between different editors and IDEs
|
45 | 45 | * [x] [eslint](http://eslint.org/) - lint javascript files (.js, .jsx)
|
46 | 46 | * [x] [tslint](https://palantir.github.io/tslint/) - lint typescript files (.ts, .tsx)
|
47 | 47 | * [x] [stylelint](https://stylelint.io/) - lint style files (.css, .scss)
|
| 48 | +* [x] [commitlint](https://github.com/marionebl/commitlint) - lint git commit messages |
48 | 49 | * [x] [postgresql](https://www.postgresql.org/) - advanced open source database
|
49 | 50 | * [x] [prismjs](https://github.com/PrismJS/prism) - code syntax highlight
|
50 | 51 | * [x] [jest](https://facebook.github.io/jest/) - painless javascript testing
|
@@ -129,7 +130,7 @@ yarn test
|
129 | 130 | ## Code coverage
|
130 | 131 |
|
131 | 132 | ```bash
|
132 |
| -yarn coveralls |
| 133 | +yarn coverage |
133 | 134 | ```
|
134 | 135 |
|
135 | 136 | ## Deployment
|
|
0 commit comments