forked from idaho/hassio-trash-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.39 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
80
81
82
{
"name": "trash-card",
"version": "2.4.0",
"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",
"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",
"start:hass-cmd": "docker run --rm -p8123:8123 -v %cd%/.hass_dev:/config homeassistant/home-assistant"
},
"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",
"lit": "3.2.0",
"luxon": "3.5.0",
"memoize-one": "6.0.0",
"sortablejs": "1.15.3",
"superstruct": "2.0.2"
},
"devDependencies": {
"@babel/core": "7.25.7",
"@babel/preset-env": "7.25.7",
"@fltri/eslint-config": "1.2.5",
"@material/mwc-ripple": "0.27.0",
"@material/tab-bar": "14.0.0",
"@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-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.0",
"@types/color": "3.0.6",
"@types/hammerjs": "2.0.45",
"@types/jest": "29.5.13",
"@types/luxon": "3.4.2",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"home-assistant-js-websocket": "9.4.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.24.0",
"rollup-plugin-serve": "1.1.1",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
},
"overrides": {
"lit": "3.2.0"
},
"browserslist": "> 0.25%, not dead"
}