added scss and changed the card sizing a bit
... | @@ -13,6 +13,8 @@ | ... | @@ -13,6 +13,8 @@ |
"mapbox-gl": "^0.40.1", | "mapbox-gl": "^0.40.1", | ||
"material-ui": "next", | "material-ui": "next", | ||
"material-ui-icons": "^1.0.0-alpha.19", | "material-ui-icons": "^1.0.0-alpha.19", | ||
"node-sass-chokidar": "^0.0.3", | |||
"npm-run-all": "^4.1.1", | |||
"prop-types": "^15.5.10", | "prop-types": "^15.5.10", | ||
"react": "^15.6.1", | "react": "^15.6.1", | ||
"react-autosuggest": "^9.3.2", | "react-autosuggest": "^9.3.2", | ||
... | @@ -30,8 +32,12 @@ | ... | @@ -30,8 +32,12 @@ |
}, | }, | ||
"proxy": "http://localhost:3001", | "proxy": "http://localhost:3001", | ||
"scripts": { | "scripts": { | ||
"start": "react-scripts start ", | "build-css": "node-sass-chokidar src/ -o src/", | ||
"build": "react-scripts build", | "watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive", | ||
"start-js": "react-scripts start", | |||
"start": "npm-run-all -p watch-css start-js", | |||
"build-js": "react-scripts build", | |||
"build": "npm-run-all build-css build-js", | |||
"test": "react-scripts test --env=jsdom", | "test": "react-scripts test --env=jsdom", | ||
"eject": "react-scripts eject", | "eject": "react-scripts eject", | ||
"storybook": "start-storybook -p 9009 -s public", | "storybook": "start-storybook -p 9009 -s public", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment