ha-frontend/package.json

40 lines
1.4 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-07-12 09:09:06 +02:00
"frontend_html": "node script/vulcanize.js",
2016-06-15 03:22:45 +02:00
"frontend_prod": "npm run js_prod && npm run frontend_html",
"frontend_demo": "npm run js_demo && npm run frontend_html",
"setup_js_dev": "git submodule init && git submodule update && 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 08:26:10 +02:00
"classnames": "^2.2.5",
2016-07-12 07:07:17 +02:00
"moment": "^2.14.1"
2015-08-13 05:29:58 +02:00
},
2015-07-13 01:57:15 +02:00
"devDependencies": {
2016-07-12 07:07:17 +02:00
"babel-core": "^6.10",
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-07-12 07:07:17 +02:00
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.10.2",
"html-minifier": "^3.0.1",
"sw-precache": "^3.2.0",
2016-03-27 17:37:29 +02:00
"vulcanize": "^1.14.8",
2016-06-12 03:05:44 +02:00
"webpack": "^2.1.0-beta.13"
2015-07-13 01:57:15 +02:00
}
}