mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Do not assume git is installed and the `.git` directory is present. Fix https://github.com/galaxyproject/galaxy/issues/5466
99 lines
3.9 KiB
JSON
99 lines
3.9 KiB
JSON
{
|
|
"name": "galaxy-client",
|
|
"version": "0.1.0",
|
|
"description": "Galaxy client application build system",
|
|
"keywords": [
|
|
"galaxy"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/galaxyproject/galaxy.git"
|
|
},
|
|
"license": "AFL-3.0",
|
|
"dependencies": {
|
|
"amdi18n-loader": "^0.6.1",
|
|
"axios": "^0.17.0",
|
|
"backbone": "1.3",
|
|
"bibtex-parse-js": "^0.0.24",
|
|
"bootstrap": "^3.3.7",
|
|
"d3": "3",
|
|
"jquery": "2",
|
|
"jquery-migrate": "~1.4",
|
|
"jquery-mousewheel": "^3.1.13",
|
|
"jquery-ui-bundle": "^1.12.1",
|
|
"jquery.complexify": "^0.5.2",
|
|
"jquery.cookie": "^1.4.1",
|
|
"latex-parser": "^0.6.2",
|
|
"latex-to-unicode-converter": "^0.5.0",
|
|
"raven-js": "^3.17.0",
|
|
"requirejs": "2",
|
|
"underscore": "^1.8.3",
|
|
"vue": "^2.5.9"
|
|
},
|
|
"scripts": {
|
|
"watch": "gulp stage-libs && concurrently \"yarn run webpack-watch\" \"yarn run gulp watch\" \"yarn run style-watch\"",
|
|
"build": "NODE_ENV=development gulp stage-libs && concurrently \"yarn run style\" \"yarn run webpack\" \"yarn run gulp clean && yarn run gulp\" && yarn run save-build-hash",
|
|
"build-production": "NODE_ENV=production gulp stage-libs && concurrently \"yarn run style\" \"yarn run webpack-production\" \"yarn run gulp clean && yarn run gulp-production\" && yarn run save-build-hash",
|
|
"build-production-maps": "NODE_ENV=production gulp stage-libs && concurrently \"yarn run style\" \"yarn run webpack-production-maps\" \"yarn run gulp clean && yarn run gulp-production-maps\" && yarn run save-build-hash",
|
|
"webpack": "webpack -d",
|
|
"save-build-hash": "(git rev-parse HEAD 2>/dev/null || echo '') >../static/client_build_hash.txt",
|
|
"webpack-watch": "webpack -d --watch",
|
|
"webpack-production": "webpack -p",
|
|
"webpack-production-maps": "GXY_BUILD_SOURCEMAPS=1 webpack -p",
|
|
"style": "grunt style",
|
|
"style-watch": "grunt watch-style",
|
|
"test": "GALAXY_TEST_AS_SINGLE_PACK=true karma start --verbose --single-run --browsers PhantomJS karma.config.js",
|
|
"test-watch": "GALAXY_TEST_AS_SINGLE_PACK=true karma start --verbose --browsers PhantomJS karma.config.js",
|
|
"gulp": "gulp",
|
|
"gulp-production": "NODE_ENV=production gulp",
|
|
"gulp-production-maps": "GXY_BUILD_SOURCEMAPS=1 NODE_ENV=production gulp",
|
|
"build-toolshed": "grunt --app=toolshed",
|
|
"jshint": "jshint --exclude='galaxy/scripts/libs/**' galaxy/scripts/**/*.js",
|
|
"build-charts": "webpack -p --config ../config/plugins/visualizations/charts/webpack.config.js",
|
|
"build-scatterplot": "NODE_PATH=./node_modules webpack -p --config ../config/plugins/visualizations/scatterplot/webpack.config.js",
|
|
"prettier": "prettier --write --tab-width 4 --print-width 120 \"galaxy/scripts/{,!(libs)/**/}/{*.js,*.vue}\""
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.24.0",
|
|
"babel-loader": "^7.1.1",
|
|
"babel-preset-env": "^1.6.1",
|
|
"concurrently": "^3.5.1",
|
|
"css-loader": "^0.28.7",
|
|
"del": "^3.0.0",
|
|
"expose-loader": "^0.7.4",
|
|
"grunt": "^0.4.5",
|
|
"grunt-bower-install-simple": "^1.1.0",
|
|
"grunt-cli": "^0.1.13",
|
|
"grunt-contrib-clean": "^0.6.0",
|
|
"grunt-contrib-copy": "^0.5.0",
|
|
"grunt-contrib-less": "^1.1.0",
|
|
"grunt-contrib-uglify": "^0.8.0",
|
|
"grunt-contrib-watch": "^0.6.1",
|
|
"grunt-exec": "^0.4.6",
|
|
"grunt-spritesmith": "^4.7.1",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^7.0.0",
|
|
"gulp-beautify": "^2.0.1",
|
|
"gulp-cached": "^1.1.1",
|
|
"gulp-if": "^2.0.2",
|
|
"gulp-plumber": "^1.1.0",
|
|
"gulp-sourcemaps": "^2.5.1",
|
|
"gulp-uglify": "^3.0.0",
|
|
"gulp-watch": "^4.3.11",
|
|
"jshint": "^2.9.4",
|
|
"karma": "^1.7.1",
|
|
"karma-phantomjs-launcher": "^1.0.4",
|
|
"karma-polyfill": "^1.0.0",
|
|
"karma-qunit": "^1.2.1",
|
|
"karma-webpack": "^2.0.6",
|
|
"phantomjs-polyfill": "0.0.2",
|
|
"phantomjs-prebuilt": "^2.1.7",
|
|
"prettier": "^1.10.1",
|
|
"qunitjs": "^2.4.1",
|
|
"sinon": "^4.1.2",
|
|
"vue-loader": "^13.5.0",
|
|
"vue-template-compiler": "^2.5.9",
|
|
"webpack": "^3.10.0"
|
|
}
|
|
}
|