1
mirror of https://github.com/home-assistant/frontend synced 2024-09-25 09:39:00 +02:00
ha-frontend/package.json

41 lines
1.7 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": {
"js_dev": "webpack --colors --progress -d --watch",
"js_dev_demo": "BUILD_DEMO=1 webpack --colors --progress -d --watch",
"js_prod": "BUILD_DEV=0 webpack --colors --progress -p -d",
"js_demo": "BUILD_DEV=0 BUILD_DEMO=1 webpack --colors --progress -p -d",
2016-04-08 09:09:52 +02:00
"frontend_html": "node script/fix-roboto.js && vulcanize --inline-css --inline-scripts --strip-comments 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-04-20 18:10:27 +02:00
"home-assistant-js": "git+https://github.com/home-assistant/home-assistant-js.git#94726f0ef680c999c8cc796e50aa96e9c90b7329",
2016-04-16 11:06:43 +02:00
"lodash": "^4.11.1",
2016-03-12 19:39:01 +01:00
"moment": "^2.12.0"
2015-08-13 05:29:58 +02:00
},
2015-07-13 01:57:15 +02:00
"devDependencies": {
2016-03-12 19:39:01 +01:00
"babel-core": "^6.7",
2015-12-14 08:53:35 +01:00
"babel-loader": "^6.2",
2016-03-12 19:39:01 +01:00
"babel-preset-es2015": "^6.6.0",
2016-04-08 05:48:51 +02:00
"bower": "^1.7.9",
"classnames": "^2.2.3",
2016-04-16 11:06:43 +02:00
"eslint": "^2.8.0",
"html-minifier": "^1.5.0",
2016-04-28 16:19:27 +02:00
"eslint-config-airbnb-base": "^1.0.4",
"eslint-plugin-import": "^1.6.1",
2016-03-27 17:37:29 +02:00
"vulcanize": "^1.14.8",
2016-04-16 11:06:43 +02:00
"webpack": "^1.13"
2015-07-13 01:57:15 +02:00
}
}