Add Redux skeleton
parent
e9a6186e
No related branches found
No related tags found
Showing
- .csslintrc 34 additions, 0 deletions.csslintrc
- .eslintrc.js 27 additions, 0 deletions.eslintrc.js
- .gitignore 29 additions, 0 deletions.gitignore
- README.md 0 additions, 0 deletionsREADME.md
- app/assets/index.html 16 additions, 0 deletionsapp/assets/index.html
- app/components/App.jsx 13 additions, 0 deletionsapp/components/App.jsx
- app/components/Counter.jsx 29 additions, 0 deletionsapp/components/Counter.jsx
- app/initialize.jsx 35 additions, 0 deletionsapp/initialize.jsx
- app/reducers.js 10 additions, 0 deletionsapp/reducers.js
- app/styles/application.css 20 additions, 0 deletionsapp/styles/application.css
- brunch-config.js 13 additions, 0 deletionsbrunch-config.js
- package-lock.json 7484 additions, 0 deletionspackage-lock.json
- package.json 34 additions, 0 deletionspackage.json
.csslintrc
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
README.md
deleted
100644 → 0
app/assets/index.html
0 → 100644
app/components/App.jsx
0 → 100644
app/components/Counter.jsx
0 → 100644
app/initialize.jsx
0 → 100644
app/reducers.js
0 → 100644
app/styles/application.css
0 → 100644
brunch-config.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | |||
"name": "brunch-app", | |||
"description": "Brunch.io application", | |||
"private": true, | |||
"author": "Brunch", | |||
"version": "0.0.1", | |||
"repository": "", | |||
"scripts": { | |||
"start": "brunch watch --server", | |||
"build": "brunch build --production" | |||
}, | |||
"dependencies": { | |||
"prop-types": "^15.6.0", | |||
"react": "^16.2", | |||
"react-dom": "^16.2", | |||
"react-redux": "~5.0.6", | |||
"redux": "~3.7.2" | |||
}, | |||
"devDependencies": { | |||
"auto-reload-brunch": "^2", | |||
"babel-brunch": "~6.1.1", | |||
"babel-preset-env": "^1.6.1", | |||
"babel-preset-react": "~6.24", | |||
"brunch": "^2", | |||
"clean-css-brunch": "^2", | |||
"eslint": "^4.16.0", | |||
"eslint-config-airbnb": "^16.1.0", | |||
"eslint-plugin-import": "^2.8.0", | |||
"eslint-plugin-jsx-a11y": "^6.0.3", | |||
"eslint-plugin-react": "^7.6.1", | |||
"hmr-brunch": "^0.1", | |||
"uglify-js-brunch": "^2" | |||
} | |||
} |
Please register or sign in to comment