-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
{
"name": "node-red-desktop",
"productName": "Node-RED-Desktop",
"version": "2.1.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": "mocha test/spec.js"
},
"keywords": [
"electron",
"node-red"
],
"author": "sakazuki",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sakazuki/node-red-desktop.git"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/bcryptjs": "^2.4.2",
"@types/electron-builder": "^2.8.0",
"@types/express": "^4.17.13",
"@types/file-url": "^3.0.2",
"@types/i18n": "^0.13.1",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.5",
"@types/request": "^2.48.7",
"@types/resolve": "1.20.1",
"@types/semver": "^7.3.9",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"assert": "^2.0.0",
"commander": "^8.3.0",
"css-loader": "^6.4.0",
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"npm-check-updates": "^11.8.5",
"prettier": "^2.4.1",
"spectron": "^15.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"deepmerge": "^4.2.2",
"electron-json-storage-sync": "^1.2.0",
"electron-log": "^4.4.1",
"electron-prompt": "1.7.0",
"electron-updater": "^4.3.9",
"express": "^4.17.1",
"express-ipfilter": "^1.2.0",
"i18n": "^0.13.3",
"jquery-validation": "^1.19.3",
"lodash": "^4.17.21",
"ngrok": "git+https://github.com/sakazuki/ngrok.git#startArgs",
"node-red": "^2.1.2",
"node-red-debugger": "^1.1.1",
"node-red-nodegen": "0.1.1",
"npm": "^8.1.1",
"nrlint": "^1.0.2",
"tmp": "^0.2.1"
}
}