Kevin Mees 5f77374599 Sample react-redux (#52)
* [react-redux] scaffold project

* [react-redux] install redux dependencies

* [react-redux] install redux typings

* [react-redux] Add redux store and reducers and hook them up with the webpart

* [react-redux] Add presentational and container components

* [react-redux] Hook up webpart lifecycle methods with redux

* [react-redux] configure reactive and non-reactive webpart versions

* [react-redux] Add all the semicolons!

* [react-redux] mark store as private in webpart

* [react-redux] Update README.md

* [react-redux] Fix typo in readme

* [react-redux] only render webpart once
2016-11-10 17:48:10 +02:00

32 lines
765 B
JSON

{
"name": "react-redux-spfx-webpart",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"@microsoft/sp-client-base": "~0.4.0",
"@microsoft/sp-client-preview": "~0.5.0",
"lodash": "^4.16.4",
"office-ui-fabric-react": "0.36.0",
"react": "0.14.8",
"react-dom": "0.14.8",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.7.0"
},
"devDependencies": {
"@microsoft/sp-build-web": "~0.7.0",
"@microsoft/sp-module-interfaces": "~0.4.0",
"@microsoft/sp-webpart-base": "^0.1.0",
"@microsoft/sp-webpart-workbench": "~0.5.0",
"gulp": "~3.9.1"
},
"scripts": {
"build": "gulp bundle",
"clean": "gulp nuke",
"test": "gulp test"
}
}