forked from ExperienceLovelace/ha-floorplan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.33 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
{
"name": "ha-floorplan",
"version": "1.0.27",
"description": "Floorplan for Home Assistant",
"main": "index.js",
"scripts": {
"clean": "shx rm -rf dist/*",
"start": "npm run clean && parcel docs/_docs/floorplan/demo.html",
"build:demo": "npm run clean && parcel build docs/_docs/floorplan/demo.html",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"build": "cross-env NODE_ENV=production npm run clean && parcel build src/index.ts --no-content-hash --no-source-maps --out-file floorplan",
"build:no-minify": "cross-env NODE_ENV=production npm run clean && parcel build src/index.ts --no-source-maps --no-minify --out-file floorplan",
"build:docs": "cross-env NODE_ENV=production parcel build src/components/floorplan-examples/floorplan-examples.ts --no-content-hash --no-source-maps --out-dir docs/_docs/floorplan --out-file floorplan-examples --public-url ./",
"update:docs": "docker run -it --rm --volume=%cd%/docs:/srv/jekyll -p 4000:4000 jekyll/jekyll bundle update github-pages",
"serve:docs": "docker run -it --rm --volume=%cd%/docs:/srv/jekyll -p 4000:4000 jekyll/jekyll jekyll serve --incremental",
"prettier": "prettier --config .prettierrc 'src/**/**/*.ts' 'src/**/*.ts' --write"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "docs/_docs/floorplan",
"env": "development"
}
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.3.2",
"@types/strftime": "^0.9.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-core": "^6.26.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"is-svg": "^4.3.1",
"minimist": "^1.2.5",
"node-forge": "^0.10.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.6.0",
"parcel-plugin-wrapper": "^0.2.3",
"prettier": "^2.3.2",
"shx": "^0.3.3",
"typescript": "^4.3.5"
},
"dependencies": {
"acorn": "^8.4.1",
"highlight.js": "^11.1.0",
"home-assistant-js-websocket": "^5.10.0",
"js-yaml": "^4.1.0",
"lit-element": "^2.5.1",
"strftime": "^0.10.0",
"superstruct": "^0.15.2",
"sval": "^0.4.8",
"timeago.js": "^4.0.2"
},
"browserslist": [
"last 1 Chrome version"
]
}