generated from custom-cards/boilerplate-card
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
79 lines (79 loc) · 2.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "lovelace-hourly-weather",
"version": "6.4.0",
"description": "Hourly weather card for Home Assistant. Visualize upcoming weather conditions as a colored horizontal bar.",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"weather",
"hourly"
],
"module": "hourly-weather.js",
"repository": "[email protected]:decompil3d/lovelace-hourly-weather.git",
"author": "Jonathan Keslin <[email protected]>",
"license": "MIT",
"dependencies": {
"@lit-labs/scoped-registry-mixin": "^1.0.3",
"@material/mwc-formfield": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-menu": "^0.27.0",
"@material/mwc-notched-outline": "^0.27.0",
"@material/mwc-ripple": "^0.27.0",
"@material/mwc-select": "^0.27.0",
"@material/mwc-switch": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"custom-card-helpers": "^1.7.2",
"home-assistant-js-websocket": "^9.4.0",
"is-valid-css-color": "^2.0.3",
"lit": "^3.1.4",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cypress": "^13.15.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"http-server": "^14.1.1",
"prettier": "^3.3.3",
"rollup": "^2.79.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.12.0",
"start-server-and-test": "^2.0.8",
"typescript": "^5.6.3"
},
"resolutions": {
"lit": "^2.1.2",
"lit-html": "2.1.2",
"lit-element": "3.1.2",
"@lit/reactive-element": "1.2.1"
},
"scripts": {
"start": "npm run build:dev -- --watch",
"build": "npm run lint && npm run rollup",
"build:dev": "rollup -c rollup.config.dev.js",
"lint": "eslint src/*.ts",
"rollup": "rollup -c",
"test:server": "http-server ./ -c-1 -p 8000 -s",
"test:cypress": "TZ=Etc/UTC cypress run",
"test": "server-test test:server http://127.0.0.1:8000 test:cypress",
"cypress": "server-test test:server http://127.0.0.1:8000 'TZ=Etc/UTC npx cypress open'"
}
}