diff --git a/Dockerfile-production b/Dockerfile-production
index ccf2c23fab4798d40382d4abc18b5034d4fe9660..1df93434a866682f8682ffcb325a09ba25c6d9d3 100644
--- a/Dockerfile-production
+++ b/Dockerfile-production
@@ -17,7 +17,7 @@ COPY wax-questions-service/package.json wax-questions-service/
 COPY wax-table-service/package.json wax-table-service/
 COPY yarn.lock .
 
-RUN yarn install --frozen-lockfile
+RUN yarn install --frozen-lockfile --production=false
 
 COPY . .
 
diff --git a/editors/demo/src/Editors.js b/editors/demo/src/Editors.js
index f79721f305a793881e430f0d5c2632bb5ff8e5c4..ab9ddbcc2c3d81ec5bf33a0c27d046c898e7ae42 100644
--- a/editors/demo/src/Editors.js
+++ b/editors/demo/src/Editors.js
@@ -9,8 +9,8 @@ import OEN from './OEN/OEN';
 
 import 'wax-prosemirror-core/dist/index.css';
 import 'wax-prosemirror-services/dist/index.css';
-import 'wax-prosemirror-questions/dist/index.css';
-import 'wax-prosemirror-table/dist/index.css';
+import 'wax-questions-service/dist/index.css';
+import 'wax-table-service/dist/index.css';
 
 const GlobalStyle = createGlobalStyle`
   body {
diff --git a/package.json b/package.json
index f728163b96123cbbe005841875a99a48e99e4bf6..fafc49e13efe5e5b6ce5e9da9b6a04a48823eab1 100644
--- a/package.json
+++ b/package.json
@@ -41,7 +41,6 @@
   "resolutions": {
     "styled-components": "5.3.1"
   },
-  
   "devDependencies": {
     "@babel/plugin-proposal-class-properties": "^7.0.0",
     "@babel/plugin-proposal-decorators": "^7.0.0",