diff options
Diffstat (limited to 'server/sonar-web/package.json')
-rw-r--r-- | server/sonar-web/package.json | 36 |
1 files changed, 10 insertions, 26 deletions
diff --git a/server/sonar-web/package.json b/server/sonar-web/package.json index 570d3b97d21..a698746b3d2 100644 --- a/server/sonar-web/package.json +++ b/server/sonar-web/package.json @@ -6,46 +6,43 @@ "license": "LGPL-3.0", "devDependencies": { "babel-cli": "^6.3.17", + "babel-core": "^6.3.17", "babel-eslint": "4.1.6", + "babel-loader": "^6.2.0", "babel-polyfill": "^6.3.14", "babel-preset-es2015": "^6.3.13", "babel-preset-react": "^6.3.13", "babel-preset-stage-0": "^6.3.13", "babel-register": "^6.3.13", - "babelify": "7.2.0", "backbone": "1.2.3", "backbone.marionette": "2.4.3", "blueimp-md5": "1.1.1", - "browserify": "11.2.0", - "browserify-shim": "3.8.10", "chai": "3.3.0", "classnames": "^2.2.0", "clipboard": "1.5.5", "d3": "3.5.6", "del": "2.0.2", - "envify": "^3.4.0", "enzyme": "^1.2.0", "eslint": "^1.10.3", "eslint-plugin-import": "^0.11.0", "eslint-plugin-mocha": "^1.1.0", "eslint-plugin-react": "^3.11.3", "event-stream": "3.3.1", + "expose-loader": "^0.7.1", "glob": "5.0.15", "gulp": "3.9.0", "gulp-autoprefixer": "^3.1.0", - "gulp-browserify": "0.5.1", "gulp-concat": "2.6.0", - "gulp-env": "0.2.0", "gulp-if": "2.0.0", "gulp-less": "3.0.3", "gulp-minify-css": "1.2.1", "gulp-plumber": "1.0.1", "gulp-rename": "1.2.2", "gulp-sourcemaps": "1.6.0", - "gulp-uglify": "1.4.2", "gulp-util": "3.0.6", - "handlebars": "2.0.0", - "hbsfy": "2.3.1", + "handlebars": "^2.0.0", + "handlebars-loader": "^1.1.4", + "imports-loader": "^0.6.5", "isparta": "^4.0.0", "jquery": "2.1.4", "jsdom": "6.5.1", @@ -60,34 +57,21 @@ "redux": "^3.0.5", "redux-logger": "^2.2.1", "redux-thunk": "^1.0.2", + "script-loader": "^0.6.1", "sinon": "1.15.4", "sinon-chai": "2.8.0", "underscore": "1.8.3", "vinyl-buffer": "1.0.0", "vinyl-source-stream": "1.1.0", - "watchify": "3.4.0", + "webpack": "^1.12.9", "whatwg-fetch": "0.10.0", "yargs": "3.27.0" }, "scripts": { - "build-fast": "gulp --fast", - "build": "gulp", + "build-fast": "gulp --fast && webpack", + "build": "NODE_ENV=PRODUCTION gulp && webpack -p", "test": "mocha --opts tests/mocha.opts tests", "coverage": "babel-node node_modules/.bin/isparta cover --root 'src/main/js' --include-all-sources --excludes '**/libs/**' --dir 'target/coverage' node_modules/.bin/_mocha -- --opts tests/mocha.opts tests", "lint": "eslint src/main/js" - }, - "browserify-shim": { - "jquery": "global:jQuery", - "underscore": "global:_", - "d3": "global:d3", - "numeral": "global:numeral" - }, - "browserify": { - "transform": [ - "hbsfy", - "babelify", - "browserify-shim", - "envify" - ] } } |