forked from netless-io/flat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 840 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 840 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
25
26
27
28
{
"name": "root",
"private": true,
"scripts": {
"preinstall": "node ./scripts/preinstall",
"lint": "yarn workspaces run lint",
"start": "node scripts/start.js",
"start:mac": "osascript ./scripts/start.scpt",
"start:win": "scripts\\start.cmd",
"ship": "yarn --cwd ./desktop/renderer-app build && yarn --cwd ./desktop/main-app ship",
"ship:mac": "yarn --cwd ./desktop/renderer-app build && yarn --cwd ./desktop/main-app ship:mac",
"ship:win": "yarn --cwd ./desktop/renderer-app build && yarn --cwd ./desktop/main-app ship:win"
},
"workspaces": {
"packages": [
"packages/*",
"desktop/*",
"web/*"
]
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"husky": "^5.0.9"
}
}