forked from layerssss/localhostd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.55 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
{
"name": "localhostd",
"version": "1.0.43",
"description": "LocalhostD takes care of launching your web app on your development machine.",
"main": "bin/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ui_watch": "LOCALHOSTD_DEV_WATCH=yes node ./bin/ui_build.js",
"ui_build": "node ./bin/ui_build.js",
"node_dev": "nodemon --watch lib --watch bin bin/cli.js server --debug --bind 0.0.0.0",
"app_deps": "electron-builder install-app-deps",
"app_dev": "electron .",
"app_build": "electron-builder",
"build": "yarn ui_build && yarn app_build",
"lint": "eslint .",
"dev": "concurrently \"yarn ui_watch\" \"yarn node_dev\"",
"cleanup": "rm -Rf ./ui_build ./dist"
},
"bin": {
"localhostd": "bin/cli.js"
},
"homepage": "https://github.com/layerssss/localhostd",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/layerssss/localhostd.git"
},
"author": {
"name": "Michael Yin",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/layerssss/localhostd/issues"
},
"dependencies": {
"commander": "^2.18.0",
"default-shell": "^1.0.1",
"execa": "^1.0.0",
"express": "^4.16.3",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"node-forge": "0.7.6",
"node-pty": "^0.10.1",
"portfinder": "^1.0.28",
"shell-quote": "^1.6.1",
"strip-ansi": "^5.0.0",
"update-notifier": "^2.5.0",
"username": "^4.0.0",
"which": "^1.3.1",
"ws": "^6.0.0"
},
"devDependencies": {
"babel-eslint": "9.x",
"bootswatch": "3",
"concurrently": "^4.0.1",
"electron": "^19.0.8",
"electron-builder": "^23.3.3",
"electron-updater": "^5.2.1",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-app": "^3.0.3",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"font-awesome": "4",
"is-electron": "^2.1.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.3",
"query-string": "^7.0.1",
"react": "^16.5.2",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.5.2",
"react-event-listener": "^0.6.4",
"react-scripts": "^4.0.3",
"react-toastify": "^4.4.0",
"recompose": "^0.30.0",
"uuid": "^3.3.2",
"xterm": "^3.8.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^5.0.1"
}
}