--- a/client/package.json Mon May 22 14:34:35 2017 +0200
+++ b/client/package.json Mon May 22 17:59:19 2017 +0200
@@ -3,8 +3,10 @@
"version": "0.1.0",
"private": true,
"dependencies": {
+ "bootstrap-sass": "^3.3.7",
"immutable": "^3.8.1",
"react": "^15.5.4",
+ "react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
@@ -12,11 +14,16 @@
"uuid": "^3.0.1"
},
"devDependencies": {
+ "node-sass-chokidar": "^0.0.1",
+ "npm-run-all": "^4.0.2",
"react-scripts": "1.0.2"
},
"scripts": {
- "start": "react-scripts start",
- "build": "react-scripts build",
+ "build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/bootstrap-sass/assets/stylesheets src/ -o src/",
+ "watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/bootstrap-sass/assets/stylesheets src/ -o src/ --watch --recursive",
+ "start-js": "react-scripts start",
+ "start": "npm-run-all -p watch-css start-js",
+ "build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}