-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.55 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
98
99
{
"name": "node-red-desktop",
"productName": "Node-RED-Desktop",
"version": "5.0.0-nr5.0.0",
"description": "Node-RED Desktop",
"main": "main/main.js",
"scripts": {
"build": "tsc && node build.js",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc.yml src/main/main.ts",
"start": "electron dist/main/main.js",
"test": "playwright test"
},
"engines": {
"node": ">=22.9.0"
},
"keywords": [
"electron",
"node-red"
],
"author": "sakazuki",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sakazuki/node-red-desktop.git"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/basic-auth": "^1.1.8",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.25",
"@types/file-url": "^3.0.4",
"@types/i18n": "^0.13.12",
"@types/lodash": "^4.17.24",
"@types/node": "^22.19.21",
"@types/resolve": "1.20.6",
"@types/semver": "^7.7.1",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"assert": "^2.1.0",
"commander": "^8.3.0",
"css-loader": "^6.11.0",
"electron": "^41.7.2",
"electron-builder": "^26.15.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-prettier": "^4.2.5",
"mocha": "^11.7.6",
"npm-check-updates": "^21.0.3",
"prettier": "^2.8.8",
"style-loader": "^3.3.4",
"ts-loader": "^9.6.0",
"typescript": "^5.9.3",
"webpack": "^5.107.2",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@ngrok/ngrok": "^1.7.0",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"deepmerge": "^4.3.1",
"electron-log": "^4.4.8",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.9",
"express": "^4.22.2",
"express-ipfilter": "^1.4.0",
"i18n": "^0.15.3",
"jquery-validation": "^1.22.1",
"lodash": "^4.18.1",
"node-red": "^5.0.0",
"nrlint": "^1.2.0",
"tmp": "^0.2.7"
},
"overrides": {
"axios": "1.15.0",
"body-parser": "1.20.4",
"cookie": "0.7.2",
"diff": "5.2.2",
"form-data": "4.0.5",
"got": "11.8.6",
"js-yaml": "4.1.1",
"minimatch": "3.1.5",
"moment-timezone": "0.5.48",
"nanoid": "3.3.8",
"on-headers": "1.1.0",
"passport": "0.7.0",
"path-to-regexp": "0.1.13",
"qs": "6.15.1",
"semver": "7.7.4",
"send": "0.19.2",
"serialize-javascript": "7.0.5",
"serve-static": "1.16.3",
"tar": "7.5.13",
"tough-cookie": "4.1.4",
"ws": "7.5.10",
"xml2js": "0.6.2"
}
}