-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 2.17 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
{
"name": "energy-period-selector-plus",
"version": "0.0.1",
"description": "Energy Period Selector Plus",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"dashboard"
],
"module": "energy-period-selector-plus.js",
"repository": "[email protected]:flixlix/energy-period-selector-plus.git",
"author": "Luca Félix <[email protected]>",
"dependencies": {
"@material/mwc-button": "^0.27.0",
"@material/mwc-dialog": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@mdi/js": "^7.2.96",
"@typescript-eslint/typescript-estree": "4.4.0",
"@vue/web-component-wrapper": "^1.3.0",
"custom-card-helpers": "^1.9.0",
"date-fns": "^2.29.3",
"home-assistant-js-websocket": "^8.0.1",
"lit": "^2.0.0-rc.2",
"material": "^0.5.3",
"memoize-one": "^6.0.0",
"vue": "2.7.14",
"vue2-daterange-picker": "0.6.8",
"weekstart": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^29.0.3",
"typescript": "^5.0.4"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c",
"test": "jest"
}
}