Hack map and toolbar view

This commit is contained in:
lukasmartinelli
2016-09-08 19:47:29 +02:00
parent d5c252ee54
commit 74a92aa1f4
15 changed files with 327 additions and 99 deletions

View File

@@ -6,7 +6,7 @@
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile --colors",
"start": "webpack-dev-server --progress --profile --colors",
"lint": "eslint --ext js --ext jsx src || exit 0"
"lint": "eslint --ext js --ext jsx src"
},
"repository": {
"type": "git",
@@ -16,12 +16,40 @@
"license": "MIT",
"homepage": "https://github.com/alicoding/react-webpack-babel#readme",
"dependencies": {
"bootstrap": "^4.0.0-alpha.3",
"node-sass": "^3.9.2",
"react": "15.3.0",
"react-dom": "15.3.0",
"react-geomicons": "^2.0.5",
"react-icons": "^2.2.1",
"react-map-gl": "^1.4.2",
"react-mapbox-gl": "^0.10.0",
"react-tap-event-plugin": "^1.0.0",
"rebass": "^0.3.1",
"sass-loader": "^4.0.1"
},
"jshintConfig": {
"esversion": 6
},
"eslintConfig": {
"extend": [
"plugin:react/recommended"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
]
},
"devDependencies": {
"babel-core": "6.14.0",
"babel-loader": "6.2.4",
@@ -35,11 +63,14 @@
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.9.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"react-hot-loader": "1.3.0",
"style-loader": "0.13.1",
"transform-loader": "^0.2.3",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-cleanup-plugin": "^0.3.0",
"webpack-dev-server": "1.15.1"
"webpack-dev-server": "1.15.1",
"webworkify-webpack": "^1.1.7"
}
}