forked from sakazuki/node-red-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "node-red-desktop",
"productName": "Node-RED-Desktop",
"version": "1.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"
},
"keywords": [
"electron",
"node-red"
],
"author": "sakazuki",
"license": "Apache-2.0",
"devDependencies": {
"@types/basic-auth": "^1.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/electron-builder": "^2.8.0",
"@types/express": "^4.17.2",
"@types/file-url": "^3.0.2",
"@types/fs-extra": "^8.0.1",
"@types/i18n": "^0.8.6",
"@types/lodash": "^4.14.149",
"@types/resolve": "0.0.8",
"@types/semver": "^6.2.0",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"bulma": "^0.8.0",
"bulma-switch": "^2.0.0",
"commander": "^4.0.1",
"electron": "^7.1.2",
"electron-builder": "^22.1.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"jquery": "^3.4.1",
"npm-check-updates": "^3.2.2",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
},
"dependencies": {
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"electron-json-storage-sync": "^1.1.1",
"electron-log": "^3.0.9",
"electron-prompt": "git+https://github.com/sakazuki/electron-prompt.git#pass_options",
"electron-updater": "^4.2.0",
"express": "^4.17.1",
"express-ipfilter": "^1.1.1",
"file-url": "^3.0.0",
"fs-extra": "^8.1.0",
"i18n": "^0.8.4",
"lodash": "^4.17.15",
"ngrok": "git+https://github.com/sakazuki/ngrok.git#startArgs",
"node-red": "^1.0.3",
"node-red-nodegen": "0.0.4",
"npm": "^6.13.1",
"tmp": "^0.1.0"
}
}