-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.81 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
91
92
93
94
{
"name": "homedingnode",
"version": "1.2.0",
"description": "Node based Portal for HomeDing devices on the local network",
"main": "app.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/HomeDing/WebFiles.git"
},
"dependencies": {
"debug": "^4.3.5",
"express": "^4.21.2",
"html-minifier-terser": "^7.2.0",
"multer": "^1.4.5-lts.1",
"multicast-dns": "^7.2.5",
"timeout-signal": "^2.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.11",
"@types/multicast-dns": "^7.2.4",
"@types/yargs": "^17.0.32",
"eslint": "^9.9.0",
"globals": "^16.0.0",
"postcss": "^8.4.38",
"postcss-scss": "^4.0.9",
"sass": "^1.84.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.3.1",
"svgstore": "^3.0.1",
"terser": "^5.31.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.2.0"
},
"peerDependencies": {
"sass": "^1.84.0"
},
"scripts": {
"all": "npm run build && npm run test && npm run pack && npm run publish",
"build": "npm run build:ts && npm run build:ts-mini && npm run build:css && npm run build:server",
"test": "npm audit && npm run test:ts && npm run test:server && npm run test:css",
"pack": "npm run pack:icons && npm run pack:dist && npm run pack:minimal && npm run pack:embed",
"publish": "npm run publish:doku && npm run publish:webfiles",
"clean": "shx rm -rf dist && shx rm -rf dist-mini",
"xprebuild": "npm run test",
"build:css": "sass docstyle.scss:docstyle.css iotstyle.scss:iotstyle.css",
"build:css-watch": "npm run build:css -- -w",
"build:server": "tsc -p server",
"build:ts": "tsc -p src",
"build:ts-mini": "tsc -p src --project src/tsconfig.mini.json",
"build:ts-watch": "npm run build:ts -- -w",
"test:css": "stylelint css/*.scss",
"test:server": "eslint ./server/*.ts",
"test:ts": "eslint ./src/*.ts",
"pack:dist": "node packdist.js",
"pack:minimal": "node packminimal.js",
"pack:icons": "node packicons.js",
"pack:embed": "node packembedweb.js",
"publish:doku": "cmd /C publishDoku.bat",
"publish:webfiles": "cmd /C publishWebFiles.bat v10",
"prestart": "npm run build",
"start": "node app.js"
},
"files": [
"dist",
"dist-mini",
"upload.h"
],
"keywords": [
"IoT",
"Arduino",
"ESP8266",
"ESP32",
"HomeDing",
"HomeDingPortal",
"HomeDingNode",
"node.js",
"iot",
"webserver"
],
"homepage": "https://homeding.github.io/",
"bugs": {
"url": "https://github.com/HomeDing/WebFiles/issues"
},
"author": "Matthias Hertel",
"license": "BSD-3-Clause"
}