-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.3 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "iobroker.web",
"version": "8.0.0",
"description": "ioBroker simple web Adapter",
"author": {
"name": "bluefox",
"email": "dogafox@gmail.com"
},
"homepage": "https://github.com/ioBroker/ioBroker.web",
"keywords": [
"ioBroker",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.web"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@iobroker/adapter-core": "^3.3.2",
"@iobroker/i18n": "^1.0.0",
"@iobroker/webserver": "^1.3.3",
"body-parser": "^2.2.2",
"compression": "^1.8.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.7",
"cookie-signature": "^1.2.2",
"express": "^5.2.1",
"express-session": "^1.19.0",
"iobroker.socketio": "^7.0.8",
"iobroker.ws": "^3.0.19",
"mime-types": "^3.0.2",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"@alcalzone/release-script": "^5.1.1",
"@alcalzone/release-script-plugin-iobroker": "^5.1.1",
"@alcalzone/release-script-plugin-license": "^5.1.1",
"@iobroker/build-tools": "^3.0.1",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/legacy-testing": "^2.0.2",
"@iobroker/socket-classes": "^2.2.21",
"@iobroker/types": "^7.1.0",
"@types/body-parser": "^1.19.6",
"@types/compression": "^1.8.1",
"@types/connect-flash": "^0.0.40",
"@types/cookie-parser": "^1.4.10",
"@types/cookie-signature": "^1.1.2",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/mime-types": "^3.0.1",
"@types/node": "^25.2.3",
"@types/passport": "^1.0.17",
"@types/passport-local": "^1.0.38",
"@types/xtend": "^4.0.6",
"axios": "^1.13.5",
"typescript": "~5.9.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.web/issues"
},
"main": "build/main.js",
"files": [
"admin/",
"www/",
"io-package.json",
"LICENSE",
"build/"
],
"scripts": {
"test": "npm run test:integration",
"test:integration": "mocha test/testNoAuthSSL.js test/testNoAuthNoSSL.js --exit",
"test:package": "mocha test/testPackageFiles.js --exit",
"prepublishOnly": "node tasks",
"build-backend": "tsc -p tsconfig.build.json && node tasks --5-post-backend",
"build": "npm run build-backend && node tasks",
"lint": "eslint -c eslint.config.mjs && cd src-admin && eslint -c eslint.config.mjs && cd ../src-login && eslint -c eslint.config.mjs && cd ../src-www && eslint -c eslint.config.mjs",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx -y npm-check-updates --upgrade && cd src-admin && npx -y npm-check-updates --upgrade && cd ../src-login && npx -y npm-check-updates --upgrade && cd ../src-www && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src-admin && npm i -f && cd ../src-login && npm i -f && cd ../src-www && npm i -f",
"0-clean": "node tasks --0-clean",
"www": "node tasks --www",
"1-npm": "node tasks --1-npm",
"2-build": "node tasks --2-build",
"3-copy": "node tasks --3-copy",
"4-login": "node tasks --4-login",
"5-post-backend": "node tasks --5-post-backend"
},
"license": "MIT"
}