forked from idaho/hassio-trash-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.27 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
{
"name": "trash-card",
"version": "1.4.6",
"description": "TrashCard - indicates what type of trash will be picked up next based on your calendar entries 🗑️",
"keywords": [
"paper",
"card",
"trash",
"waste",
"home-assistant",
"hacs",
"mushroom",
"lovelace",
"lovelace-custom-card",
"hassio",
"frontend",
"calendar"
],
"private": true,
"main": "dist/trashcard.js",
"scripts": {
"start": "rollup -c --watch --bundleConfigAsCjs",
"build": "rollup -c --bundleConfigAsCjs",
"clean": "npx rimraf ./dist",
"qa": "npm run lint && npm run test",
"lint": "npx eslint ./src --color",
"test": "npx jest",
"start:hass": "docker run --rm -p8123:8123 -v ${PWD}/.hass_dev:/config homeassistant/home-assistant:beta",
"start:hass-cmd": "docker run --rm -p8123:8123 -v %cd%/.hass_dev:/config homeassistant/home-assistant:beta"
},
"author": "Florian Triebel",
"repository": {
"type": "git",
"url": "https://github.com/idaho/hassio-trash-card"
},
"license": "ISC",
"dependencies": {
"@material/mwc-select": "0.27.0",
"@material/mwc-textfield": "0.27.0",
"color": "4.2.3",
"hammerjs": "2.0.8",
"home-assistant-js-websocket": "9.1.0",
"lit": "2.8.0",
"lovelace-mushroom": "git+https://github.com/piitaya/lovelace-mushroom.git#v3.4.2",
"memoize-one": "6.0.0",
"sortablejs": "1.15.2",
"superstruct": "1.0.3"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@fltri/eslint-config": "1.2.3",
"@material/mwc-ripple": "0.27.0",
"@material/tab-bar": "14.0.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/color": "3.0.6",
"@types/hammerjs": "2.0.45",
"@types/jest": "29.5.12",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-simple-import-sort": "12.0.0",
"jest": "29.7.0",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"rollup": "4.12.0",
"rollup-plugin-serve": "2.0.2",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
}
}