-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "ha-floorplan",
"version": "1.0.47",
"description": "Floorplan for Home Assistant",
"homepage": "https://experiencelovelace.github.io/ha-floorplan",
"keywords": [
"homeassistant",
"home assisant",
"floorplan",
"svg"
],
"bugs": {
"url": "https://github.com/ExperienceLovelace/ha-floorplan/issues"
},
"license": "ISC",
"contributors": [
{
"name": "Petar Kožul",
"email": "pkozul@yahoo.com",
"url": "https://github.com/pkozul"
},
{
"name": "Tobias Nordahl Kristensen",
"email": "tobiasnordahl@gmail.com",
"url": "https://github.com/exetico"
}
],
"main": "dist/floorplan.js",
"repository": "https://github.com/ExperienceLovelace/ha-floorplan",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --env production",
"build:dev": "webpack",
"analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer ./stats.json",
"update:docs": "docker run -it --rm --volume=${PWD}/docs:/srv/jekyll -p 4000:4000 jekyll/jekyll bundle update github-pages",
"serve:docs": "docker run -it --rm --volume=${PWD}/docs:/srv/jekyll -p 4000:4000 jekyll/jekyll jekyll serve --incremental",
"prettier": "prettier --config .prettierrc \"src/**/*.ts\" \"src/**/*.ts\" --write",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"home-assistant-js-websocket": "^8.0.1",
"js-yaml": "^4.1.0",
"lit": "^2.4.1",
"parse-duration": "^1.0.2",
"strftime": "^0.10.1",
"superstruct": "^1.0.3",
"sval": "^0.4.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.10",
"@types/strftime": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"html-loader": "^4.2.0",
"prettier": "^2.8.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.15.0"
}
}