-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "sshmon",
"version": "0.5.0",
"license": "MIT",
"scripts": {
"build": "yarn --cwd server build && yarn --cwd gui build",
"build-watch": "yarn --cwd server build-watch & yarn --cwd gui build-watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json",
"prettier-check": "prettier --check .",
"clean": "yarn --cwd server clean && yarn --cwd gui clean",
"tsc": "tsc --outDir /tmp/none",
"tsc-watch": "yarn tsc --watch",
"postinstall": "yarn --cwd server && yarn --cwd gui",
"pkg": "mkdir -p build && pkg . -o build/sshmon",
"pkg-clean": "rm -rf build",
"start": "node server/build/cli.js",
"deploy": "yarn pkg-clean && yarn clean && yarn build && yarn pkg",
"test": "cd test && make test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "2.8.4",
"typescript": "^4.9.5"
},
"bin": "server/build/cli.js",
"pkg": {
"assets": [
"gui/dist",
"server/node_modules/bunyan"
]
},
"dependencies": {
"pkg": "^5.8.1"
}
}