forked from natcl/electron-node-red
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "Workbench",
"version": "20.7.1",
"description": "Electron Node-RED with ngrok",
"author": "sammachin",
"main": "main.js",
"scripts": {
"start": "electron .",
"localbuild": "node node_modules/electron-builder/out/cli/cli.js --platform all --arch all",
"localbuild:osx": "node node_modules/electron-builder/out/cli/cli.js --mac --x64",
"localbuild:linux32": "node node_modules/electron-builder/out/cli/cli.js --linux --ia32",
"localbuild:linux64": "node node_modules/electron-builder/out/cli/cli.js --linux --x64",
"localbuild:win32": "node node_modules/electron-builder/out/cli/cli.js --win --ia32",
"localbuild:win64": "node node_modules/electron-builder/out/cli/cli.js --win --x64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammachin/workbench.git"
},
"dependencies": {
"@vonagevolta/volta2": "0.0.28",
"bcryptjs": "~2.4.3",
"electron-store": "~5.1.1",
"express": "*",
"ngrok": "~3.2.7",
"node-red": "^1.1.0",
"node-red-contrib-nexmo": "^3.3.1",
"node-red-dashboard": "*",
"npm": "^6.14.4",
"request-promise": "~4.2.5",
"workbench-nodered-nodes": "file:./workbench-nodered-nodes"
},
"keywords": [
"electron",
"node-red"
],
"contributors": [
{
"name": "Dave Conway-Jones"
},
{
"name": "Nathanaël Lécaudé"
},
{
"name": "zuhito"
},
{
"name": "Sam Machin"
},
{
"name": "Julia Biro"
},
{
"name": "Alex Lakatos"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sammachin/workbench/issues"
},
"homepage": "https://github.com/sammachin/workbench#readme",
"devDependencies": {
"electron": "^8.1.1",
"electron-builder": "*"
}
}