forked from resoai/TileBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.24 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
{
"name": "tileboard",
"version": "2.0.3",
"description": "Simple yet highly customizable dashboard for Home Assistant",
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config --environment PRODUCTION",
"build:watch": "rollup --config --environment PRODUCTION --watch",
"lint": "eslint rollup.config.js scripts",
"fix": "eslint rollup.config.js scripts --fix",
"release": "standard-version"
},
"standard-version": {
"scripts": {
"prerelease": "git pull && yarn && yarn build",
"posttag": "git push --follow-tags"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "node post-merge-warn.js"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"yarn lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/resoai/TileBoard.git"
},
"author": "Alexey",
"license": "MIT",
"bugs": {
"url": "https://github.com/resoai/TileBoard/issues"
},
"homepage": "https://github.com/resoai/TileBoard#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/angular": "^1.8.0",
"@types/hammerjs": "^2.0.36",
"@types/hls.js": "^0.13.2",
"babel-plugin-angularjs-annotate": "^0.10.0",
"eslint": "^7.12.1",
"husky": "^4.3.0",
"less": "^3.12.2",
"lint-staged": "^10.5.1",
"print-message": "^3.0.1",
"rollup": "^2.33.1",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-emit-ejs": "^3.1.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-styles": "^3.11.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.0.0"
},
"dependencies": {
"@mdi/font": "^5.8.55",
"angular": "^1.8.2",
"angular-chart.js": "^1.1.1",
"angular-hammer": "^2.2.0",
"angular-moment": "^1.3.0",
"angularjs-gauge": "^2.2.0",
"chart.js": "^2.9.4",
"hls.js": "^0.14.16",
"node-sass": "^5.0.0"
},
"resolutions": {
"chart.js": "2.9.4"
}
}