mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 09:28:51 +00:00
c75054b320
Move .bowerrc, bower.json, gulpfile.js, package.json down to root level. Update paths in .bowerrc, gulpfile.js, Makefile Add a heroku-postbuild step to package.json which installs devDependencies and runs the build. Add step in bin/pre_compile which adds the requirements_all_ds.txt to requirements.txt to ensure that cffi is installed. Also removes pymssql as this is not supported on Heroku. Add content from rd_ui/.gitignore to .gitignore and remove rd_ui/.gitignore. Add section in setup.rst about Heroku deployments.
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "redash",
|
|
"devDependencies": {
|
|
"gulp": "^3.9.0",
|
|
"gulp-connect": "^2.2.0",
|
|
"gulp-autoprefixer": "2.3.1",
|
|
"gulp-cache": "^0.2.10",
|
|
"rimraf": "^2.4.0",
|
|
"gulp-filter": "^2.0.2",
|
|
"gulp-imagemin": "^2.3.0",
|
|
"gulp-jshint": "^1.11.1",
|
|
"gulp-karma": "0.0.4",
|
|
"gulp-load-plugins": "^0.10.0",
|
|
"gulp-plumber": "^1.0.1",
|
|
"gulp-minify-css": "^1.2.0",
|
|
"gulp-uglify": "^1.2.0",
|
|
"gulp-useref": "^3.0.0",
|
|
"gulp-util": "^3.0.6",
|
|
"gulp-watch": "^4.2.4",
|
|
"run-sequence": "^1.1.1",
|
|
"wiredep": "^2.2.2",
|
|
"lazypipe": "^0.2.4",
|
|
"gulp-ng-annotate": "^1.0.0",
|
|
"open": "0.0.5",
|
|
"jshint-stylish": "^1.0.0",
|
|
"gulp-print": "^2.0.1",
|
|
"gulp-rev-all": "^0.8.22",
|
|
"bower": "~1.7.1",
|
|
"gulp-cli": "~1.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "echo 'No tests.'",
|
|
"build": "gulp build",
|
|
"bower": "bower",
|
|
"heroku-postbuild": "npm install --dev && npm run bower install && npm run build && npm prune --production"
|
|
},
|
|
"dependencies": {
|
|
}
|
|
}
|