mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-05 20:48:17 +00:00
* [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
32 lines
765 B
JSON
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"
|
|
}
|
|
}
|