This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
90 lines (90 loc) · 2.6 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
86
87
88
89
90
{
"name": "tileboard",
"version": "2.10.2",
"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 && prettier --check '**/*.html'",
"fix": "eslint --fix rollup.config.js scripts && prettier --write '**/*.html'",
"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",
"prettier --write '**/*.html'",
"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.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/angular": "^1.8.4",
"@types/hammerjs": "^2.0.41",
"@types/hls.js": "^1.0.0",
"@types/lodash.mergewith": "^4.6.7",
"angular-i18n": "^1.8.3",
"babel-plugin-angularjs-annotate": "^0.10.0",
"core-js": "3",
"eslint": "^8.18.0",
"husky": "^4.3.8",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"print-message": "^3.0.1",
"rollup": "^2.75.7",
"rollup-plugin-copy-glob": "^0.3.2",
"rollup-plugin-copy-merge": "^0.3.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-emit-ejs": "^3.1.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-serve": "^2.0.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.53.0",
"standard-version": "^9.1.1"
},
"dependencies": {
"@mdi/font": "^6.9.96",
"angular": "^1.8.3",
"angular-chart.js": "^1.1.1",
"angular-dynamic-locale": "^0.1.38",
"angular-hammer": "^2.2.0",
"angular-moment": "^1.3.0",
"angularjs-gauge": "^2.2.0",
"chart.js": "^2.9.4",
"hls.js": "^1.1.5",
"lodash.mergewith": "^4.6.2"
},
"resolutions": {
"chart.js": "2.9.4"
}
}