-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 900 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "gitdock",
"version": "1.1.0",
"description": "Local dashboard for managing multiple GitHub accounts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gitdock-dev/gitdock.git"
},
"homepage": "https://gitdock.dev",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"build:bundle": "esbuild server.js --bundle --platform=node --outfile=dist/server.bundle.js --external:child_process --external:fs --external:path --external:os --external:https --external:http --external:crypto --external:net --external:tls --external:url --external:stream --external:zlib --external:events --external:util --external:querystring --external:buffer"
},
"bin": "server.js",
"dependencies": {
"express": "^4.21.0"
},
"devDependencies": {
"esbuild": "^0.24.0",
"postject": "^1.0.0-alpha.4"
}
}