-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.9 KB
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
{
"name": "dashticz",
"version": "4.0.5",
"description": "Alternative dashboard for Domoticz",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.3.1",
"@jaames/iro": "^5.5.2",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-zoom": "^2.2.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.23",
"hammerjs": "^2.0.8",
"handlebars": "^4.7.9",
"ical.js": "^2.2.1",
"ion-sound": "^3.0.7",
"jquery": "^4.0.0",
"jquery-migrate": "^4.0.2",
"jquery-ui-dist": "^1.13.3",
"jquery-ui-touch-punch": "^0.2.3",
"js-cookie": "^3.0.8",
"long-press-event": "^2.5.2",
"md5": "^2.3.0",
"mobile-detect": "^1.4.5",
"skycons-color": "^1.0.0",
"spectrum-colorpicker": "^1.8.1",
"spotify-web-api-js": "^1.5.2",
"swiper": "^14.2.0"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@playwright/test": "^1.62.1",
"@types/node": "^26.4.1",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.5",
"mini-css-extract-plugin": "^2.10.2",
"prettier": "^3.9.6",
"sass": "1.103.1",
"sass-loader": "^17.0.1",
"terser-webpack-plugin": "^5.6.1",
"webpack": "^5.110.3",
"webpack-cli": "^7.2.3"
},
"engines": {
"node": "^22.18.0 || >=24.11.0"
},
"browserslist": [
"> 0.25%",
"not dead"
],
"scripts": {
"build": "webpack --config build/webpack.config.js --mode production",
"format": "prettier --config build/prettier.json --ignore-path build/prettierignore \"{build,css,custom,js,lang,src,tests,themes}/**/*.{ts,css,less,scss,js,json}\" \".github/**/*.{yml,yaml}\" \"docs/_static/**/*.{css,js}\" \"*.{html,js,json,yaml}\" \"tools/*.html\" --write",
"format:check": "prettier --config build/prettier.json --ignore-path build/prettierignore \"{build,css,custom,js,lang,src,tests,themes}/**/*.{ts,css,less,scss,js,json}\" \".github/**/*.{yml,yaml}\" \"docs/_static/**/*.{css,js}\" \"*.{html,js,json,yaml}\" \"tools/*.html\" --check",
"prepare": "node build/setup-git-hooks.js",
"test": "node --test",
"test:playwright": "playwright test --project=chromium",
"test:playwright:all": "playwright test",
"test:live": "playwright test tests/live-integrations.spec.js --project=chromium",
"test:playwright:update": "playwright test --project=chromium --update-snapshots",
"test:playwright:report": "playwright show-report",
"verify": "npm run format:check && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dashticz/dashticz.git"
},
"author": "Dashticz",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dashticz/dashticz/issues"
},
"homepage": "https://github.com/Dashticz/dashticz#readme",
"resolutions": {
"minimist": "^1.2.3"
}
}