Created
July 14, 2017 09:30
-
-
Save gborelli/a880f1426aa43d383f4b6e4e19666ab7 to your computer and use it in GitHub Desktop.
patch for package json with missed dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/UI_v0.1/package.json b/UI_v0.1/package.json | |
index a0b107b50f..667d10c3ba 100644 | |
--- a/UI_v0.1/package.json | |
+++ b/UI_v0.1/package.json | |
@@ -11,8 +11,7 @@ | |
"clean:node_nodules": "rimraf node_nodules", | |
"clean": "npm run clean:build && npm run clean:dist && npm run clean:report" | |
}, | |
- "dependencies": { | |
- }, | |
+ "dependencies": {}, | |
"devDependencies": { | |
"babel-cli": "6.24.1", | |
"babel-core": "6.24.1", | |
@@ -20,9 +19,14 @@ | |
"babel-loader": "7.0.0", | |
"babel-plugin-add-module-exports": "0.2.1", | |
"babel-preset-es2015": "6.24.1", | |
+ "css-loader": "^0.28.4", | |
"eslint": "3.19.0", | |
"eslint-loader": "1.7.1", | |
+ "extract-text-webpack-plugin": "^3.0.0", | |
+ "html-webpack-plugin": "^2.29.0", | |
+ "style-loader": "^0.18.2", | |
"webpack": "3.1.0", | |
+ "webpack-bundle-analyzer": "^2.8.3", | |
"yargs": "7.1.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment