-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.69 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
{
"name": "localhostd",
"version": "1.0.50",
"description": "LocalhostD takes care of launching your web app on your development machine.",
"type": "module",
"main": "bin/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ui_watch": "webpack --env development --watch",
"ui_build": "webpack",
"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": "npm run ui_build && npm run app_build",
"lint": "eslint .",
"dev": "concurrently \"npm run ui_watch\" \"npm run 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": "layerssss@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/layerssss/localhostd/issues"
},
"dependencies": {
"commander": "^14.0.0",
"default-shell": "^2.0.0",
"execa": "^9.0.0",
"express": "^5.0.0",
"lodash": "^4.17.11",
"node-forge": "^1.4.0",
"node-pty": "1.2.0-beta.13",
"portfinder": "^1.0.28",
"shell-quote": "^1.6.1",
"strip-ansi": "^7.0.0",
"update-notifier": "^7.0.0",
"which": "^7.0.0",
"electron-updater": "^6.0.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^3.0.0",
"@swc/core": "^1.0.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"bootstrap": "^5.0.0",
"concurrently": "^9.0.0",
"css-loader": "^7.0.0",
"electron": "^42.0.0",
"electron-builder": "^26.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.0.0",
"html-webpack-plugin": "^5.0.0",
"is-electron": "^2.1.0",
"jiti": "^2.7.0",
"mini-css-extract-plugin": "^2.0.0",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"query-string": "^9.0.0",
"react": "^19.0.0",
"react-bootstrap": "^2.0.0",
"react-dom": "^19.0.0",
"react-toastify": "^11.0.0",
"swc-loader": "^0.2.0",
"uuid": "^14.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^7.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.0",
"utf-8-validate": "^6.0.0"
}
}