This repository has been archived by the owner on Jan 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.74 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
83
84
85
{
"name": "zigzag",
"version": "0.1.0",
"description": "Lovelace ZigZag Custom Card/Panel",
"keywords": [
"home-assistant",
"homeassistant",
"automation",
"lovelace",
"zigbee"
],
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint 'src/**/*.ts'",
"rollup": "rollup -c",
"clean": "rm -r ./dist/* "
},
"module": "zigzag-panel.js",
"repository": "git@github.com:zigzag.git",
"author": "samantha.uk.github@gmail.com",
"license": "MIT",
"dependencies": {
"@types/d3": "^5.7.2",
"custom-card-helpers": "^1.6.3",
"d3": "5.16.0",
"home-assistant-js-websocket": "^5.4.1",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"node": "^12.1.0",
"resize-observer-polyfill": "^1.5.1",
"superstruct": "^0.10.12"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@types/marked": "^1.1.0",
"@types/memoize-one": "4.1.0",
"@types/resize-observer-browser": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^4.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-lit": "^1.2.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-sort-class-members": "^1.8.0",
"eslint-plugin-wc": "^1.2.0",
"eslint-watch": "^7.0.0",
"fs-extra": "^7.0.1",
"lint-staged": "^8.1.5",
"lit-analyzer": "^1.2.0",
"npm-watch": "^0.7.0",
"prettier": "^2.0.4",
"rollup": "^2.8.2",
"rollup-plugin-dev": "^1.1.2",
"rollup-plugin-serve": "^1.0.4",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.2",
"rollup-plugin-visualizer": "^4.1.1",
"serve": "^11.3.0",
"terser-webpack-plugin": "^3.0.6",
"ts-lit-plugin": "^1.2.0",
"typescript": "^4.0.2"
}
}