Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
*.iml
# Distribution Files
dist/
build/

# IDE & Editors
.idea
node_modules
.vscode

# OSX
*.DS_Store
.AppleDouble
.LSOverride
._*

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
*.lnk

*.iml

node_modules

# Debug log from npm
npm-debug.log
yarn-error.log

*.map
*.
package-lock.json

yarn.lock
react-loadable.json
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"start": "NODE_ENV=development webpack-dev-server",
"build": "NODE_ENV=production webpack --config webpack.build.config.js",
"server-build": "NODE_ENV=production webpack --config webpack.server.config.js",
"build-all": "npm run build && npm run server-build",
"prod": "node server.js"
},
"dependencies": {
Expand Down Expand Up @@ -41,14 +42,14 @@
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.8.3",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.7",
"react-router-config": "^1.0.0-beta.4",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"react-redux": "7.1.0",
"react-router-config": "^5.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.20.3",
"webpack-node-externals": "^1.7.2",
Expand All @@ -61,7 +62,7 @@
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"react-router-dom": "^4.2.2",
"react-router-dom": "^5.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.3"
Expand Down
Loading