ha-frontend/package.json

41 lines
1.8 KiB
JSON
Raw Normal View History

2015-07-13 01:57:15 +02:00
{
"name": "home-assistant-polymer",
"version": "1.0.0",
"description": "A frontend for Home Assistant using the Polymer framework",
2015-10-16 09:12:29 +02:00
"repository": {
"type": "git",
"url": "https://github.com/balloob/home-assistant-polymer"
},
2015-07-13 01:57:15 +02:00
"scripts": {
2016-04-28 16:19:35 +02:00
"js_dev": "webpack --color --progress -d --watch",
"js_dev_demo": "BUILD_DEMO=1 webpack --color --progress -d --watch",
"js_prod": "BUILD_DEV=0 webpack --color --progress -p",
"js_demo": "BUILD_DEV=0 BUILD_DEMO=1 webpack --color --progress -p",
2016-05-07 08:34:52 +02:00
"frontend_html": "vulcanize --inline-css --inline-scripts --strip-comments --strip-exclude bower_components/font-roboto/roboto.html src/home-assistant.html > build/frontend.vulcan.html && node script/minify.js",
2015-07-13 06:06:47 +02:00
"frontend_prod": "npm run js_prod && bower install && npm run frontend_html",
"frontend_demo": "npm run js_demo && bower install && npm run frontend_html",
2015-10-26 05:04:42 +01:00
"setup_js_dev": "npm install && cd node_modules && rm -rf home-assistant-js && git clone https://github.com/balloob/home-assistant-js.git && cd home-assistant-js && npm install",
2015-08-13 05:29:58 +02:00
"test": "eslint src"
2015-07-13 01:57:15 +02:00
},
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
"license": "MIT",
2015-08-13 05:29:58 +02:00
"dependencies": {
2016-05-29 03:32:42 +02:00
"home-assistant-js": "git+https://github.com/home-assistant/home-assistant-js.git#9e1399526ae3542259a596f462cfac7c5f559ecd",
2016-04-28 16:19:35 +02:00
"moment": "^2.13.0"
2015-08-13 05:29:58 +02:00
},
2015-07-13 01:57:15 +02:00
"devDependencies": {
2016-05-07 08:34:52 +02:00
"babel-core": "^6.8",
2015-12-14 08:53:35 +01:00
"babel-loader": "^6.2",
2016-04-28 16:19:35 +02:00
"babel-preset-es2015-webpack": "^6.4.1",
2016-04-08 05:48:51 +02:00
"bower": "^1.7.9",
2016-05-07 08:34:52 +02:00
"classnames": "^2.2.5",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^2.0.0",
"eslint-plugin-import": "^1.7.0",
"html-minifier": "^2.1.2",
"sw-precache": "^3.2.0",
2016-03-27 17:37:29 +02:00
"vulcanize": "^1.14.8",
2016-05-07 08:34:52 +02:00
"webpack": "^2.1.0-beta.7"
2015-07-13 01:57:15 +02:00
}
}