ha-frontend-cdce8p/package.json
Adam Mills 2c69e001ee MVP Gulp introduction (#334)
* Install gulp as dev dependency

* Placeholder gulpfile

* Replace rollup invocations with gulp

* Consolidate duplicated code

* Big cleanup of gulpfile

* Without cache test

* Revert "Without cache test"

This reverts commit 0e3881d8d79b81faa514669fa2836e415dcc5c95.
2017-07-13 09:08:26 -07:00

62 lines
2.2 KiB
JSON

{
"name": "home-assistant-polymer",
"version": "1.0.0",
"description": "A frontend for Home Assistant using the Polymer framework",
"repository": {
"type": "git",
"url": "https://github.com/home-assistant/home-assistant-polymer"
},
"scripts": {
"clean": "rm -rf build/* build-temp/*",
"gulp": "gulp",
"js_dev": "node script/gen-service-worker.js && npm run gulp watch_ru_all",
"js_dev_demo": "BUILD_DEMO=1 npm run gulp watch_ru_all",
"js_prod": "BUILD_DEV=0 npm run gulp ru_all",
"js_demo": "BUILD_DEV=0 BUILD_DEMO=1 npm run gulp ru_all",
"frontend_html": "node script/vulcanize.js",
"frontend_prod": "npm run js_prod && npm run frontend_html",
"frontend_demo": "npm run js_demo && npm run frontend_html",
"ru_all": "npm run gulp ru_all",
"watch_ru_all": "npm run gulp watch_ru_all",
"lint_js": "eslint src panels preact-src --ext js,html",
"lint_html": "ls -1 src/home-assistant.html panels/**/ha-panel-*.html | xargs polymer lint --input",
"test": "npm run lint_js && npm run lint_html"
},
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
"license": "Apache-2.0",
"dependencies": {
"es6-object-assign": "^1.1.0",
"home-assistant-js-websocket": "^1.1.0",
"preact": "^8.1.0"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"bower": "^1.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.0.0",
"gulp": "^3.9.1",
"gulp-rollup-each": "^1.0.2",
"html-minifier": "^3.4.3",
"hydrolysis": "^1.24.1",
"polymer-cli": "^0.17.0",
"polymer-lint": "^0.8.3",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"sw-precache": "^5.1.0",
"uglify-js": "^2.8.22",
"vulcanize": "^1.15.4",
"web-component-tester": "^5.0.1"
}
}